From cc50c380f8e7663b77442c67603b3a0b6e1441ed Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 8 May 2023 20:44:21 -0700 Subject: [PATCH] Add bold formatting to commit hash in console output. --- coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coder.py b/coder.py index 23f879d5b..14606b3ba 100755 --- a/coder.py +++ b/coder.py @@ -519,7 +519,7 @@ class Coder: repo.git.add(*relative_dirty_fnames) commit_result = repo.git.commit("-m", commit_message, "--no-verify") commit_hash = repo.head.commit.hexsha[:7] - self.console.print(f"[green]{commit_hash} {commit_message}") + self.console.print(f"[green bold]{commit_hash} {commit_message}") return commit_hash, commit_message