diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-12-12 17:17:09 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-12-12 17:17:09 +0100 |
commit | cc8c9281e6313c8b108f20df0ea633445c78bf2d (patch) | |
tree | 33257e22badae2149cb29802c2c5eaa0ccad8251 /youtube_dl | |
parent | cf372f0778e82cdc181a6173909589e640ac29fb (diff) |
[downloader/common] Do not use classic int division
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/downloader/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py index 6e44c88c9..2a566eabe 100644 --- a/youtube_dl/downloader/common.py +++ b/youtube_dl/downloader/common.py @@ -160,7 +160,7 @@ class FileDownloader(object): return speed = float(byte_counter) / elapsed 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): """Returns a temporary filename for the given filename.""" |