youtube-dl

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

commit 32fd27ec982d3ba43bd4abe1cfe0dce9568f17b6
parent 0c13f378de5f77c31a7df6d6deaec990bd3379d9
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 30 Apr 2014 20:02:17 +0700

[http] Fix string/None comparison with int while in test

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

diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py @@ -110,7 +110,7 @@ class HttpFD(FileDownloader): # However, for a test we still would like to download just a piece of a file. # To achieve this we limit data_len to _TEST_FILE_SIZE and manually control # block size when downloading a file. - if is_test and data_len > self._TEST_FILE_SIZE: + if is_test and (data_len is None or int(data_len) > self._TEST_FILE_SIZE): data_len = self._TEST_FILE_SIZE if data_len is not None: