Really fix 9099da2
Too many parentheses: I got confused This one should finally solve: ```python TypeError: unsupported operand type(s) for %: 'NoneType' and 'tuple' ```
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user