mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 14:55:00 +00:00
Changed print statement to avoid logging or further colorizing.
This commit is contained in:
parent
69d5e8a624
commit
bc12ecf82c
1 changed files with 2 additions and 1 deletions
|
@ -117,7 +117,8 @@ class Commands:
|
||||||
else:
|
else:
|
||||||
diff = self.coder.repo.git.diff(commits, self.coder.last_aider_commit_hash)
|
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):
|
def completions_add(self, partial):
|
||||||
files = set(self.coder.get_all_relative_files())
|
files = set(self.coder.get_all_relative_files())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue