From 448002bd0dacfff74fd32d41900c15d3d764b909 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 9 May 2023 19:43:53 -0700 Subject: [PATCH] all aider output should be red --- aider/coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/coder.py b/aider/coder.py index 0beb12850..ffabd4378 100755 --- a/aider/coder.py +++ b/aider/coder.py @@ -446,7 +446,7 @@ class Coder: full_commit_message = commit_message + "\n\n" + context repo.git.commit("-m", full_commit_message, "--no-verify") 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()