From: SyxbEaEQ2 Date: Wed, 6 Aug 2014 18:53:04 +0000 (+0200) Subject: [downloader/common] Fix possible negative sleep time in slow_down() X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=00cf122d7a79e81a2b328b7352d23eb0bdb17e52 [downloader/common] Fix possible negative sleep time in slow_down() --- diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py index 6404e1928..33ebbf6b4 100644 --- a/youtube_dl/downloader/common.py +++ b/youtube_dl/downloader/common.py @@ -157,7 +157,7 @@ class FileDownloader(object): return speed = float(byte_counter) / elapsed 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): """Returns a temporary filename for the given filename."""