From 5e1be966ed82b8e9a79c54c10799a0012a4aa5f8 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 4 Nov 2024 09:05:23 -0800 Subject: [PATCH] chore: add comment about printing traceback stack in error handling --- aider/io.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/io.py b/aider/io.py index 5e27a267a..29ec13b58 100644 --- a/aider/io.py +++ b/aider/io.py @@ -320,6 +320,7 @@ class InputOutput: return f.read() except OSError as err: self.tool_error(f"{filename}: unable to read: {err}") + #ai print the trackback stack! return except FileNotFoundError: self.tool_error(f"{filename}: file not found error")