From 4be0c6945b9068a622cc006640d18ef1d558b7d5 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 8 May 2023 17:12:54 -0700 Subject: [PATCH] Refactor Confirm.ask message in coder.py. --- coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coder.py b/coder.py index 645075485..c8804afdd 100755 --- a/coder.py +++ b/coder.py @@ -470,7 +470,7 @@ class Coder: self.console.print(f"[red]Commit message: {commit_message}\n") if ask: - res = Confirm.ask("[red]Commit before starting the chat?") + res = Confirm.ask("[red]Commit before the chat proceeds?") if not res: self.console.print("[red]Skipped commmit.")