In Python 3 print is a function

This commit is contained in:
JoeLametta
2018-05-02 08:00:00 +00:00
parent 37fd1c6bb2
commit 44ece38740
12 changed files with 36 additions and 36 deletions

View File

@@ -79,7 +79,7 @@ Retags the image from the given .cue files with tags obtained from MusicBrainz.
prompt=self.options.prompt)
if not prog.metadata:
print 'Not in MusicBrainz database, skipping'
print('Not in MusicBrainz database, skipping')
continue
prog.metadata.discid = mbdiscid
@@ -98,10 +98,10 @@ Retags the image from the given .cue files with tags obtained from MusicBrainz.
runner.run(t)
path = os.path.basename(path)
if t.changed:
print 'Retagged %s' % path
print('Retagged %s' % path)
else:
print '%s already tagged correctly' % path
print
print('%s already tagged correctly' % path)
print()
class Verify(BaseCommand):