style: add newline before error message in io.py

This commit is contained in:
Paul Gauthier (aider) 2024-11-04 09:05:28 -08:00
parent ebdc126b00
commit 96ad107c19

View file

@ -320,6 +320,7 @@ class InputOutput:
return f.read()
except OSError as err:
import traceback
self.tool_error(f"{filename}: unable to read: {err}")
self.tool_error("Traceback:\n" + "".join(traceback.format_stack()))
return