Explorar o código

[downloader/common] Do not use classic int division

Philipp Hagemeister %!s(int64=11) %!d(string=hai) anos
pai
achega
cc8c9281e6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      youtube_dl/downloader/common.py

+ 1 - 1
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."""