fix: update changed_files handling to use dict keys instead of direct list

This commit is contained in:
Paul Gauthier 2024-10-25 16:09:12 -07:00 committed by Paul Gauthier (aider)
parent 144ba783a8
commit a8fe84acc7

View file

@ -376,7 +376,9 @@ class InputOutput:
root, stop_event=stop_event, gitignores=gitignore, encoding=self.encoding root, stop_event=stop_event, gitignores=gitignore, encoding=self.encoding
): ):
if changed: 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() self.interrupt_input()
break break
except Exception as e: except Exception as e: