fix bare raise, fix fencepost error

This commit is contained in:
Samantha Baldwin
2017-09-09 15:12:00 -04:00
parent a72ae82f0d
commit e4ca5c0a7f
2 changed files with 3 additions and 5 deletions

View File

@@ -146,8 +146,7 @@ CD in the AccurateRip database."""
# now try and rip all other tracks as well, except for the
# last one (to avoid readers that can't do overread
# for track in range(2, (len(table.tracks) + 1) - 1):
for track in range(2, (len(table.tracks) + 1)):
for track in range(2, (len(table.tracks) + 1) - 1):
try:
archecksums = self._arcs(runner, table, track, offset)
except task.TaskException, e: