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:
|
elif self._accuratelyRipped < nonHTOA:
|
||||||
accurateTracks = nonHTOA - self._accuratelyRipped
|
accurateTracks = nonHTOA - self._accuratelyRipped
|
||||||
lines.append("%s Some tracks could not be verified as "
|
lines.append("%s Some tracks could not be verified as "
|
||||||
"accurate (%d/%d got no match)") % (
|
"accurate (%d/%d got no match)" % (
|
||||||
arHeading, accurateTracks, nonHTOA)
|
arHeading, accurateTracks, nonHTOA))
|
||||||
else:
|
else:
|
||||||
lines.append("%s All tracks accurately ripped" % arHeading)
|
lines.append("%s All tracks accurately ripped" % arHeading)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user