fix replacement reporting on fqcn match

This commit is contained in:
Klaus Zerwes 2022-08-06 00:57:03 +02:00
parent 6671db17a2
commit f18f4a7fba

View File

@ -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)