Skip to content

Commit

Permalink
Merge pull request #199 from LingMan/patch-1
Browse files Browse the repository at this point in the history
Fix recently introduced Python 3 incompatibility
  • Loading branch information
JoeLametta authored Oct 8, 2017
2 parents a3e9260 + d97371d commit f54c4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whipper/command/cd.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def _ripIfNotRipped(number):
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
Expand Down

0 comments on commit f54c4bb

Please sign in to comment.