diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-05-11 22:03:30 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-05-11 22:03:30 +0600 |
commit | e0741fd4496c85ef447e72df935cb6edd1af53ed (patch) | |
tree | 6bc962969844461783c2fe2595ca17a48ae12b73 /youtube_dl | |
parent | e73b9c65e279f283b28d14be5b7173eae46d4364 (diff) |
[__init__] Simplify colon presence check
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/__init__.py | 2 |
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: |