Changed print statement to avoid logging or further colorizing.

This commit is contained in:
Paul Gauthier 2023-05-12 15:06:29 -07:00
parent 69d5e8a624
commit bc12ecf82c

View file

@ -117,7 +117,8 @@ class Commands:
else:
diff = self.coder.repo.git.diff(commits, self.coder.last_aider_commit_hash)
self.io.tool(Text(diff))
# don't use io.tool() because we don't want to log or further colorize
print(diff)
def completions_add(self, partial):
files = set(self.coder.get_all_relative_files())