youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit e73b9c65e279f283b28d14be5b7173eae46d4364
parent 702ccf2dc08603fed98d2672f86af1a0e300d83e
Author: teemuy <z0rs4m37tAlL>
Date:   Wed, 11 May 2016 18:10:30 +0300

Bugfix: Allow colons in custom HTTP header values.

Diffstat:
Myoutube_dl/__init__.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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