Fix recently introduced Python 3 incompatibility

Fixes d4aad57188
This commit is contained in:
LingMan
2017-09-30 02:52:11 +02:00
committed by GitHub
parent a3e92606c5
commit d97371dbc7

View File

@@ -472,7 +472,7 @@ Log files will log the path to tracks relative to this directory.
for i, track in enumerate(self.itable.tracks):
# FIXME: rip data tracks differently
if not track.audio:
print 'skipping data track %d, not implemented' % (i + 1)
print('skipping data track %d, not implemented' % (i + 1))
# FIXME: make it work for now
track.indexes[1].relative = 0
continue