all aider output should be red

This commit is contained in:
Paul Gauthier 2023-05-09 19:43:53 -07:00
parent 0c7f16afbf
commit 448002bd0d

View file

@ -446,7 +446,7 @@ class Coder:
full_commit_message = commit_message + "\n\n" + context full_commit_message = commit_message + "\n\n" + context
repo.git.commit("-m", full_commit_message, "--no-verify") repo.git.commit("-m", full_commit_message, "--no-verify")
commit_hash = repo.head.commit.hexsha[:7] commit_hash = repo.head.commit.hexsha[:7]
self.console.print(f"[green]{commit_hash} {commit_message}") self.console.print(f"[red]{commit_hash} {commit_message}")
self.last_modified = self.get_last_modified() self.last_modified = self.get_last_modified()