Skip to content

Commit

Permalink
program/cdparanoia: fix failed() task of AnalyzeTask
Browse files Browse the repository at this point in the history
Signed-off-by: JoeLametta <JoeLametta@users.noreply.github.com>
  • Loading branch information
MerlijnWajer authored and JoeLametta committed Dec 15, 2019
1 parent 4234c8f commit 29ee670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whipper/program/cdparanoia.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ def done(self):
def failed(self):
# cdparanoia exits with return code 1 if it can't determine
# whether it can defeat the audio cache
output = "".join(self._output)
output = "".join(o.decode() for o in self._output)
m = _WARNING_RE.search(output)
if m or _ABORTING_RE.search(output):
self.defeatsCache = False
Expand Down

0 comments on commit 29ee670

Please sign in to comment.