Minor fix

This commit is contained in:
Miroslav Stampar 2013-05-30 11:42:27 +02:00
parent 793a8ad349
commit 12870e6ff3

View File

@ -1200,7 +1200,7 @@ def _setHTTPExtraHeaders():
conf.headers = conf.headers.split("\n") if "\n" in conf.headers else conf.headers.split("\\n")
for headerValue in conf.headers:
if headerValue.count(':') > 1:
if headerValue.count(':') >= 1:
header, value = (_.lstrip() for _ in headerValue.split(":", 1))
if header and value: