From: Philipp Hagemeister Date: Fri, 12 Dec 2014 16:17:09 +0000 (+0100) Subject: [downloader/common] Do not use classic int division X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=cc8c9281e6313c8b108f20df0ea633445c78bf2d;p=youtube-dl [downloader/common] Do not use classic int division --- 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."""