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:
JoeLametta
2016-07-27 12:09:16 +02:00
parent 956701eb87
commit ae3d4da2e5

View File

@@ -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)