projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c13f37
)
[http] Fix string/None comparison with int while in test
author
Sergey M․
<dstftw@gmail.com>
Wed, 30 Apr 2014 13:02:17 +0000
(20:02 +0700)
committer
Sergey M․
<dstftw@gmail.com>
Wed, 30 Apr 2014 13:02:17 +0000
(20:02 +0700)
youtube_dl/downloader/http.py
patch
|
blob
|
history
diff --git
a/youtube_dl/downloader/http.py
b/youtube_dl/downloader/http.py
index 7e1c1d7156fa9a5986dcdb7d41f4c19ab9c790b4..f79e6a99587cdc7d13ba210e528512a1e572e4ea 100644
(file)
--- 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: