From f18f4a7fbafde5bd9bde6bbcfbfcc9d290dcb869 Mon Sep 17 00:00:00 2001 From: Klaus Zerwes Date: Sat, 6 Aug 2022 00:57:03 +0200 Subject: [PATCH] fix replacement reporting on fqcn match --- fqcn-fixer.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fqcn-fixer.py b/fqcn-fixer.py index 5ad5630..80d795e 100755 --- a/fqcn-fixer.py +++ b/fqcn-fixer.py @@ -209,7 +209,10 @@ for f in parsefiles: '\\1%s:' % fqcndict[fqcnmodule], line ) - print('*', file=sys.stderr, end='', flush=True) + if fqcnmodule == fqcndict[fqcnmodule]: + print('.', file=sys.stderr, end='', flush=True) + else: + print('*', file=sys.stderr, end='', flush=True) else: print('.', file=sys.stderr, end='', flush=True)