projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e73b9c6
)
[__init__] Simplify colon presence check
author
Sergey M․
<dstftw@gmail.com>
Wed, 11 May 2016 16:03:30 +0000
(22:03 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Wed, 11 May 2016 16:03:30 +0000
(22:03 +0600)
youtube_dl/__init__.py
patch
|
blob
|
history
diff --git
a/youtube_dl/__init__.py
b/youtube_dl/__init__.py
index 740a1904b70953fb5c0c1c7a5880291be4856d1e..5df965191c373614c3f62128ece2b65d53fb8f72 100644
(file)
--- 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: