1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-16 10:09:32 +00:00

[__init__] Simplify colon presence check

This commit is contained in:
Sergey M․ 2016-05-11 22:03:30 +06:00
parent e73b9c65e2
commit e0741fd449
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -67,7 +67,7 @@ def _real_main(argv=None):
# Custom HTTP headers
if opts.headers is not None:
for h in opts.headers:
if h.find(':', 1) < 0:
if ':' not in h:
parser.error('wrong header formatting, it should be key:value, not "%s"' % h)
key, value = h.split(':', 1)
if opts.verbose: