[__init__] Simplify colon presence check
[youtube-dl] / youtube_dl / __init__.py
index cbd84c3af329b51a72eb235a40e102bdd83bde6d..5df965191c373614c3f62128ece2b65d53fb8f72 100644 (file)
@@ -67,9 +67,9 @@ 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(':', 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