projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
702ccf2
)
Bugfix: Allow colons in custom HTTP header values.
author
teemuy
<z0rs4m37tAlL>
Wed, 11 May 2016 15:10:30 +0000
(18:10 +0300)
committer
Sergey M․
<dstftw@gmail.com>
Wed, 11 May 2016 15:59:24 +0000
(21:59 +0600)
youtube_dl/__init__.py
patch
|
blob
|
history
diff --git
a/youtube_dl/__init__.py
b/youtube_dl/__init__.py
index cbd84c3af329b51a72eb235a40e102bdd83bde6d..740a1904b70953fb5c0c1c7a5880291be4856d1e 100644
(file)
--- a/
youtube_dl/__init__.py
+++ b/
youtube_dl/__init__.py
@@
-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