From a395d9bb5c80d90ba60cfa9ff730a538dce7b743 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 23 May 2024 13:55:53 -0700 Subject: [PATCH] fix double lines for confirm_ask --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index f2e5ead25..a365aa1f0 100644 --- a/aider/io.py +++ b/aider/io.py @@ -300,7 +300,7 @@ class InputOutput: res = prompt(question + " ", default=default) hist = f"{question.strip()} {res.strip()}" - self.tool_output(hist) + self.append_chat_history(hist, linebreak=True, blockquote=True) if not res or not res.strip(): return