replaced % operator with .format()

This commit is contained in:
Darko Poljak 2014-01-28 12:51:29 +01:00
parent c7f34614dd
commit ef57c4a04d
1 changed files with 1 additions and 1 deletions

View File

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