From a8fe84acc7cadd85daa4121183d61f55b19e331c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 25 Oct 2024 16:09:12 -0700 Subject: [PATCH] fix: update changed_files handling to use dict keys instead of direct list --- aider/io.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 620955cb0..36beaeae0 100644 --- a/aider/io.py +++ b/aider/io.py @@ -376,7 +376,9 @@ class InputOutput: root, stop_event=stop_event, gitignores=gitignore, encoding=self.encoding ): if changed: - self.changed_files = list(changed) + dump(changed) + #ai if any of the .values() contain ! then join all the .values() into lines and return that + self.changed_files = list(changed.keys()) self.interrupt_input() break except Exception as e: