about summary refs log tree commit diff
path: root/youtube_dl/__init__.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-05-11 22:03:30 +0600
committerSergey M․ <dstftw@gmail.com>2016-05-11 22:03:30 +0600
commite0741fd4496c85ef447e72df935cb6edd1af53ed (patch)
tree6bc962969844461783c2fe2595ca17a48ae12b73 /youtube_dl/__init__.py
parente73b9c65e279f283b28d14be5b7173eae46d4364 (diff)
downloadyoutube-dl-e0741fd4496c85ef447e72df935cb6edd1af53ed.tar.gz
youtube-dl-e0741fd4496c85ef447e72df935cb6edd1af53ed.tar.xz
youtube-dl-e0741fd4496c85ef447e72df935cb6edd1af53ed.zip
[__init__] Simplify colon presence check
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r--youtube_dl/__init__.py2
1 files changed, 1 insertions, 1 deletions
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: