diff --git a/aider/watch.py b/aider/watch.py index 6e20ee847..762840f31 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -122,9 +122,8 @@ def main(): for changed_files in watch_source_files( directory, args.gitignore, ignore_func=ignore_test_files ): - print("\nChanged files:") for file in sorted(changed_files): - print(f" {file}") + print(file) except KeyboardInterrupt: print("\nStopped watching files")