Explorar el Código

[downloader/common] Fix possible negative sleep time in slow_down()

SyxbEaEQ2 hace 11 años
padre
commit
00cf122d7a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      youtube_dl/downloader/common.py

+ 1 - 1
youtube_dl/downloader/common.py

@@ -157,7 +157,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((byte_counter / rate_limit) - elapsed)
+            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."""