wmlscope: clearer message when checking for duplicated files

For now, I'm keeping the MD5 hashes in the message.
This commit is contained in:
Elvish_Hunter 2015-08-06 23:21:20 +02:00
parent bb51399d26
commit 032609e782

View file

@ -459,7 +459,7 @@ Usage: wmlscope [options] dirpath
hashes[hash_]=[filename]
for (hash_, files) in hashes.items(): # items in Py3 is equivalent to iteritems in Py2
if len(files) > 1:
print("%%\nCollisions between the following files with MD5 hash", hash_)
print("%%\nPossible duplicated files with MD5 hash", hash_)
for fn in files:
print("->", fn)
xref.duplicates(exportonly=False)