replaced % operator with .format()
This commit is contained in:
parent
c7f34614dd
commit
ef57c4a04d
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ Perform custom action
|
|||
from sweeper import iter_file_dups
|
||||
for files in iter_file_dups(['images']):
|
||||
for fname in files:
|
||||
print('found duplicate file with name: %s' % fname)
|
||||
print('found duplicate file with name: {}'.format(fname))
|
||||
|
||||
As script::
|
||||
|
||||
|
|
Loading…
Reference in a new issue