Removed format literal string

This commit is contained in:
MikeTheWatchGuy 2018-08-03 12:35:46 -04:00
parent 46858be048
commit 1b19c4e546
1 changed files with 1 additions and 2 deletions

View File

@ -36,8 +36,7 @@ def FindDuplicatesFilesInFolder(path):
continue continue
shatab.append(f_sha) shatab.append(f_sha)
msg = f'{total} Files processed\n'\ msg = '{} Files processed\n {} Duplicates found'.format(total_files, dup_count)
f'{dup_count} Duplicates found\n'
sg.MsgBox('Duplicate Finder Ended', msg) sg.MsgBox('Duplicate Finder Ended', msg)
# ====____====____==== Pseudo-MAIN program ====____====____==== # # ====____====____==== Pseudo-MAIN program ====____====____==== #