refactor: Remove unnecessary strip parameter from tool_output calls

This commit is contained in:
Paul Gauthier 2024-09-03 20:03:11 -07:00 committed by Paul Gauthier (aider)
parent 64effaae68
commit f3cce95419
2 changed files with 2 additions and 2 deletions

View file

@ -1790,7 +1790,7 @@ class Coder:
self.io.tool_error("The LLM did not conform to the edit format.")
self.io.tool_output(urls.edit_errors)
self.io.tool_output()
self.io.tool_output(str(err), strip=False)
self.io.tool_output(str(err))
self.reflected_message = str(err)
return edited

View file

@ -756,7 +756,7 @@ class Commands:
if not errors:
return
self.io.tool_output(errors, strip=False)
self.io.tool_output(errors)
return errors
def cmd_run(self, args, add_on_nonzero_exit=False):