Yen Chi Hsuan
8 years ago
No known key found for this signature in database
GPG Key ID: 3FDDD575826C5C30
1 changed files with
1 additions and
5 deletions
-
youtube_dl/utils.py
|
@ -2031,11 +2031,7 @@ def mimetype2ext(mt): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def urlhandle_detect_ext(url_handle): |
|
|
def urlhandle_detect_ext(url_handle): |
|
|
try: |
|
|
|
|
|
url_handle.headers |
|
|
|
|
|
getheader = lambda h: url_handle.headers[h] |
|
|
|
|
|
except AttributeError: # Python < 3 |
|
|
|
|
|
getheader = url_handle.info().getheader |
|
|
|
|
|
|
|
|
getheader = url_handle.headers.get |
|
|
|
|
|
|
|
|
cd = getheader('Content-Disposition') |
|
|
cd = getheader('Content-Disposition') |
|
|
if cd: |
|
|
if cd: |
|
|