Skip to content

Commit

Permalink
Fix regression introduced in Python 3 port
Browse files Browse the repository at this point in the history
Fixes #424.

Signed-off-by: JoeLametta <[email protected]>
  • Loading branch information
MerlijnWajer authored and JoeLametta committed Dec 3, 2019
1 parent bbd28c6 commit 47c62a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whipper/image/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def stop(self):
"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)
Expand Down

0 comments on commit 47c62a9

Please sign in to comment.