From: Sergey M․ Date: Wed, 11 May 2016 16:03:30 +0000 (+0600) Subject: [__init__] Simplify colon presence check X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=e0741fd4496c85ef447e72df935cb6edd1af53ed;p=youtube-dl [__init__] Simplify colon presence check --- diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 740a1904b..5df965191 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -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: