summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-12-12 17:17:09 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-12-12 17:17:09 +0100
commitcc8c9281e6313c8b108f20df0ea633445c78bf2d (patch)
tree33257e22badae2149cb29802c2c5eaa0ccad8251
parentcf372f0778e82cdc181a6173909589e640ac29fb (diff)
downloadyoutube-dl-cc8c9281e6313c8b108f20df0ea633445c78bf2d.tar.gz
youtube-dl-cc8c9281e6313c8b108f20df0ea633445c78bf2d.tar.xz
youtube-dl-cc8c9281e6313c8b108f20df0ea633445c78bf2d.zip
[downloader/common] Do not use classic int division
-rw-r--r--youtube_dl/downloader/common.py2
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."""