aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/downloader
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-12-23 15:48:00 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-12-23 15:49:21 +0100
commit1538eff6d8ee73f2ae4ac1dd832a9ef978c63074 (patch)
tree92aafe41ebfb72668063c4f927f44361dd3a963f /youtube_dl/downloader
parent00b2685b9ceecbeb5a5ea1cb7bd1ff2772e941de (diff)
downloadyoutube-dl-1538eff6d8ee73f2ae4ac1dd832a9ef978c63074.tar.xz
[bliptv] Remove support for direct downloads
This is now handled by the generic IE
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r--youtube_dl/downloader/http.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py
index 54dc7616b..dbc5af3ca 100644
--- a/youtube_dl/downloader/http.py
+++ b/youtube_dl/downloader/http.py
@@ -52,8 +52,6 @@ class HttpFD(FileDownloader):
while count <= retries:
# Establish connection
try:
- if count == 0 and 'urlhandle' in info_dict:
- data = info_dict['urlhandle']
data = compat_urllib_request.urlopen(request)
break
except (compat_urllib_error.HTTPError, ) as err: