From 1538eff6d8ee73f2ae4ac1dd832a9ef978c63074 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Mon, 23 Dec 2013 15:48:00 +0100 Subject: [bliptv] Remove support for direct downloads This is now handled by the generic IE --- youtube_dl/downloader/http.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'youtube_dl/downloader') 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: -- cgit v1.2.3