Fix regression introduced in Python 3 port
Fixes #424. Signed-off-by: JoeLametta <JoeLametta@users.noreply.github.com>
This commit is contained in:
committed by
JoeLametta
parent
bbd28c668f
commit
47c62a9990
@@ -167,7 +167,7 @@ class ImageVerifyTask(task.MultiSeparateTask):
|
||||
"in debug log (set RIP_DEBUG=4)")
|
||||
index = track.indexes[1]
|
||||
assert taskk.length % common.SAMPLES_PER_FRAME == 0
|
||||
end = taskk.length / common.SAMPLES_PER_FRAME
|
||||
end = taskk.length // common.SAMPLES_PER_FRAME
|
||||
self.lengths[trackIndex] = end - index.relative
|
||||
|
||||
task.MultiSeparateTask.stop(self)
|
||||
|
||||
Reference in New Issue
Block a user