mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Improve addinfourl_wrapper for compatibility with older Python versions
This commit is contained in:
parent
7b531c0be6
commit
0f6b00b587
1 changed files with 3 additions and 1 deletions
|
@ -193,7 +193,9 @@ class YoutubeDLHandler(urllib2.HTTPHandler):
|
|||
def addinfourl_wrapper(stream, headers, url, code):
|
||||
if hasattr(urllib2.addinfourl, 'getcode'):
|
||||
return urllib2.addinfourl(stream, headers, url, code)
|
||||
return urllib2.addinfourl(stream, headers, url)
|
||||
ret = urllib2.addinfourl(stream, headers, url)
|
||||
ret.code = code
|
||||
return ret
|
||||
|
||||
def http_request(self, req):
|
||||
for h in std_headers:
|
||||
|
|
Loading…
Reference in a new issue