diff --git a/scripts/tools/fix-header.py b/scripts/tools/fix-header.py index 88a8273e8..2e82513fc 100755 --- a/scripts/tools/fix-header.py +++ b/scripts/tools/fix-header.py @@ -282,10 +282,12 @@ def main(): print("Skipping %s (%s)" % (path, info), file=sys.stderr) continue if args.in_place: + print("Parsing and fixing %s (in place)" % path, file=sys.stderr) with open(path, 'w') as f: print(new_content, file=f) else: # by default, we just output to stdout + print("Parsing and fixing %s (stdout)" % path, file=sys.stderr) print(new_content)