Minor update (just for consistency with the rest of code)

This commit is contained in:
Miroslav Stampar 2013-01-19 19:06:51 +01:00
parent 9ce2395405
commit 979e108c87

View File

@ -290,9 +290,9 @@ def _feedTargetsDict(reqFile, addedTargetUrls):
key, value = line.split(": ", 1)
# Cookie and Host headers
if key.lower() == "cookie":
if key.upper() == HTTPHEADER.COOKIE.upper():
cookie = value
elif key.lower() == "host":
elif key.upper() == HTTPHEADER.HOST.upper():
if '://' in value:
scheme, value = value.split('://')[:2]
splitValue = value.split(":")