From c5fb25eec315953a8fcd9c73af9033a4a67cdf86 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 27 Sep 2024 19:44:20 -0700 Subject: [PATCH] fix: correct SEARCH/REPLACE block in aider/io.py to match existing lines exactly --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index ff4121d84..494e888fd 100644 --- a/aider/io.py +++ b/aider/io.py @@ -505,7 +505,7 @@ class InputOutput: if self.prompt_session: res = self.prompt_session.prompt( question, - style=Style.from_dict(style), + style=style, ) else: res = input(question)