fix: Update config file existence indicator in main.py

This commit is contained in:
Paul Gauthier 2024-08-14 10:06:49 -07:00 committed by Paul Gauthier (aider)
parent cdab3fd17f
commit 7534fabcc0

View file

@ -330,7 +330,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
if args.verbose:
print("Config files search order, if no --config:")
for file in default_config_files:
exists = "[EXISTS]" if Path(file).exists() else ""
exists = "(exists)" if Path(file).exists() else ""
print(f" - {file} {exists}")
default_config_files.reverse()