[__init__] Simplify colon presence check
This commit is contained in:
parent
e73b9c65e2
commit
e0741fd449
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue