1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-13 21:57:16 +08:00

Bugfix: Allow colons in custom HTTP header values.

This commit is contained in:
teemuy 2016-05-11 18:10:30 +03:00
parent 702ccf2dc0
commit a9a7e4fbdf

View File

@ -69,7 +69,7 @@ def _real_main(argv=None):
for h in opts.headers:
if h.find(':', 1) < 0:
parser.error('wrong header formatting, it should be key:value, not "%s"' % h)
key, value = h.split(':', 2)
key, value = h.split(':', 1)
if opts.verbose:
write_string('[debug] Adding header from command line option %s:%s\n' % (key, value))
std_headers[key] = value