Browse Source

[http] Use the `YoutubeDL.urlopen` method

totalwebcasting
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
22ff5d2105
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/downloader/http.py

+ 2
- 2
youtube_dl/downloader/http.py View File

@ -49,7 +49,7 @@ class HttpFD(FileDownloader):
while count <= retries:
# Establish connection
try:
data = compat_urllib_request.urlopen(request)
data = self.ydl.urlopen(request)
break
except (compat_urllib_error.HTTPError, ) as err:
if (err.code < 500 or err.code >= 600) and err.code != 416:
@ -59,7 +59,7 @@ class HttpFD(FileDownloader):
# Unable to resume (requested range not satisfiable)
try:
# Open the connection again without the range header
data = compat_urllib_request.urlopen(basic_request)
data = self.ydl.urlopen(basic_request)
content_length = data.info()['Content-Length']
except (compat_urllib_error.HTTPError, ) as err:
if err.code < 500 or err.code >= 600:


Loading…
Cancel
Save