mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
Fix tool error message to display the correct error information.
This commit is contained in:
parent
fec1a646d5
commit
d79a629db0
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ class Commands:
|
|||
errors = self.coder.linter.lint(fname)
|
||||
except FileNotFoundError as err:
|
||||
self.io.tool_error(f"Unable to lint {fname}")
|
||||
self.io.tool_error(err)
|
||||
self.io.tool_error(str(err))
|
||||
continue
|
||||
|
||||
if errors:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue