From d97371dbc709ec7c636c00f8592a1a15969f04b8 Mon Sep 17 00:00:00 2001 From: LingMan Date: Sat, 30 Sep 2017 02:52:11 +0200 Subject: [PATCH] Fix recently introduced Python 3 incompatibility Fixes https://github.com/JoeLametta/whipper/commit/d4aad571888718b3cbfd813b5ec0d02f271f05ba --- whipper/command/cd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whipper/command/cd.py b/whipper/command/cd.py index ec17722..c46e863 100644 --- a/whipper/command/cd.py +++ b/whipper/command/cd.py @@ -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