瀏覽代碼

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

Sergey M․ 11 年之前
父節點
當前提交
32fd27ec98
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/downloader/http.py

+ 1 - 1
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.
         # 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
         # To achieve this we limit data_len to _TEST_FILE_SIZE and manually control
         # block size when downloading a file.
         # 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
             data_len = self._TEST_FILE_SIZE
 
 
         if data_len is not None:
         if data_len is not None: