Browse Source

Bugfix: Allow colons in custom HTTP header values.

totalwebcasting
teemuy 8 years ago
committed by Sergey M․
parent
commit
e73b9c65e2
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/__init__.py

+ 1
- 1
youtube_dl/__init__.py 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


Loading…
Cancel
Save