aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/downloader/http.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-04-30 20:02:17 +0700
committerSergey M․ <dstftw@gmail.com>2014-04-30 20:02:17 +0700
commit32fd27ec982d3ba43bd4abe1cfe0dce9568f17b6 (patch)
tree81d376441e708f8ddac7009c30980f5a45d98225 /youtube_dl/downloader/http.py
parent0c13f378de5f77c31a7df6d6deaec990bd3379d9 (diff)
downloadyoutube-dl-32fd27ec982d3ba43bd4abe1cfe0dce9568f17b6.zip
youtube-dl-32fd27ec982d3ba43bd4abe1cfe0dce9568f17b6.tar.gz
youtube-dl-32fd27ec982d3ba43bd4abe1cfe0dce9568f17b6.tar.bz2
[http] Fix string/None comparison with int while in test
Diffstat (limited to 'youtube_dl/downloader/http.py')
-rw-r--r--youtube_dl/downloader/http.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py
index 7e1c1d7..f79e6a9 100644
--- 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: