mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 23:05:00 +00:00
fix: update changed_files handling to use dict keys instead of direct list
This commit is contained in:
parent
144ba783a8
commit
a8fe84acc7
1 changed files with 3 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue