mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
Bugfix: Allow colons in custom HTTP header values.
This commit is contained in:
parent
702ccf2dc0
commit
e73b9c65e2
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue