From 1a55e103ff9a6fcaaa7343d98f481f84bdb68599 Mon Sep 17 00:00:00 2001 From: Brayo Date: Thu, 31 Oct 2024 18:57:21 +0300 Subject: [PATCH] fix: update the copystr --- gptme/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gptme/util.py b/gptme/util.py index 4ee3e59f..78dd02fb 100644 --- a/gptme/util.py +++ b/gptme/util.py @@ -169,7 +169,7 @@ def ask_execute(question="Execute code?", default=True) -> bool: # pragma: no c termios.tcflush(sys.stdin, termios.TCIFLUSH) # flush stdin choicestr = f"[{'Y' if default else 'y'}/{'n' if default else 'N'}]" - copystr = "ctrl-c to copy" + copystr = "[Ctrl+c] to copy" console.print( f"[bold bright_yellow on red] {question} {choicestr} {copystr if copiable else ''} [/] ", end="",