Merge pull request #759 from aelaguiz/reorder_files

This commit is contained in:
paul-gauthier 2024-07-01 10:29:25 -03:00 committed by GitHub
commit ca952a8455
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -613,14 +613,14 @@ class Commands:
self.io.tool_output("\nNo files in chat or git repo.")
return
if chat_files:
self.io.tool_output("Files in chat:\n")
for file in chat_files:
if other_files:
self.io.tool_output("Repo files not in the chat:\n")
for file in other_files:
self.io.tool_output(f" {file}")
if other_files:
self.io.tool_output("\nRepo files not in the chat:\n")
for file in other_files:
if chat_files:
self.io.tool_output("\nFiles in chat:\n")
for file in chat_files:
self.io.tool_output(f" {file}")
def cmd_help(self, args):