1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-21 04:29:34 +00:00

[utils] Fix getheader in urlhandle_detect_ext

Fixes #7049, related to #9440
This commit is contained in:
Yen Chi Hsuan 2016-05-15 15:32:54 +08:00
parent 69c9cc2716
commit 79298173c5
No known key found for this signature in database
GPG key ID: 3FDDD575826C5C30

View file

@ -2031,11 +2031,7 @@ def mimetype2ext(mt):
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')
if cd: