From ae3d4da2e5dbe95b373ae65806cb4836e2d9811f Mon Sep 17 00:00:00 2001 From: JoeLametta Date: Wed, 27 Jul 2016 12:09:16 +0200 Subject: [PATCH] Really fix 9099da2 Too many parentheses: I got confused This one should finally solve: ```python TypeError: unsupported operand type(s) for %: 'NoneType' and 'tuple' ``` --- morituri/result/logger.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/morituri/result/logger.py b/morituri/result/logger.py index 2a12b96..30f5db3 100644 --- a/morituri/result/logger.py +++ b/morituri/result/logger.py @@ -119,8 +119,8 @@ class MorituriLogger(result.Logger): elif self._accuratelyRipped < nonHTOA: accurateTracks = nonHTOA - self._accuratelyRipped lines.append("%s Some tracks could not be verified as " - "accurate (%d/%d got no match)") % ( - arHeading, accurateTracks, nonHTOA) + "accurate (%d/%d got no match)" % ( + arHeading, accurateTracks, nonHTOA)) else: lines.append("%s All tracks accurately ripped" % arHeading)