about summary refs log tree commit diff
path: root/youtube_dl/__init__.py
diff options
context:
space:
mode:
authorteemuy <z0rs4m37tAlL>2016-05-11 18:10:30 +0300
committerSergey M․ <dstftw@gmail.com>2016-05-11 21:59:24 +0600
commite73b9c65e279f283b28d14be5b7173eae46d4364 (patch)
tree0ea485b79f2e9cf6c3be1d3ee80898d5405dd1e5 /youtube_dl/__init__.py
parent702ccf2dc08603fed98d2672f86af1a0e300d83e (diff)
downloadyoutube-dl-e73b9c65e279f283b28d14be5b7173eae46d4364.tar.gz
youtube-dl-e73b9c65e279f283b28d14be5b7173eae46d4364.tar.xz
youtube-dl-e73b9c65e279f283b28d14be5b7173eae46d4364.zip
Bugfix: Allow colons in custom HTTP header values.
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r--youtube_dl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index cbd84c3af..740a1904b 100644
--- 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