[__init__] Simplify colon presence check
[youtube-dl] / youtube_dl / __init__.py
index 740a1904b70953fb5c0c1c7a5880291be4856d1e..5df965191c373614c3f62128ece2b65d53fb8f72 100644 (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: