From fb7bbb982e083ad354478633a188345390c06509 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 14 Aug 2024 10:10:28 -0700 Subject: [PATCH] fix: Change default prompt option to uppercase 'Y' --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 599d5013d..5bfaac932 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -724,7 +724,7 @@ class Commands: add = result.returncode != 0 else: response = self.io.prompt_ask( - "Add the output to the chat?\n(y/n/instructions)", default="" + "Add the output to the chat?\n(Y/n/instructions)", default="" ).strip() if response.lower() in ["yes", "y"]: