youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit cc8c9281e6313c8b108f20df0ea633445c78bf2d
parent cf372f0778e82cdc181a6173909589e640ac29fb
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 12 Dec 2014 17:17:09 +0100

[downloader/common] Do not use classic int division

Diffstat:
Myoutube_dl/downloader/common.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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."""