浏览代码

Bugfix: Allow colons in custom HTTP header values.

teemuy 9 年之前
父节点
当前提交
e73b9c65e2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/__init__.py

+ 1 - 1
youtube_dl/__init__.py

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