mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[downloader/common] Do not use classic int division
This commit is contained in:
parent
cf372f0778
commit
cc8c9281e6
@ -160,7 +160,7 @@ class FileDownloader(object):
|
|||||||
return
|
return
|
||||||
speed = float(byte_counter) / elapsed
|
speed = float(byte_counter) / elapsed
|
||||||
if speed > rate_limit:
|
if speed > rate_limit:
|
||||||
time.sleep(max((byte_counter / rate_limit) - elapsed, 0))
|
time.sleep(max((byte_counter // rate_limit) - elapsed, 0))
|
||||||
|
|
||||||
def temp_name(self, filename):
|
def temp_name(self, filename):
|
||||||
"""Returns a temporary filename for the given filename."""
|
"""Returns a temporary filename for the given filename."""
|
||||||
|
Loading…
Reference in New Issue
Block a user