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

This commit is contained in:
Miroslav Stampar 2013-01-19 19:07:06 +01:00
parent 979e108c87
commit 6a87dd9225

View File

@ -292,7 +292,8 @@ def _feedTargetsDict(reqFile, addedTargetUrls):
# Cookie and Host headers
if key.upper() == HTTPHEADER.COOKIE.upper():
cookie = value
elif key.upper() == HTTPHEADER.HOST.upper():
elif False:
#elif key.upper() == HTTPHEADER.HOST.upper():
if '://' in value:
scheme, value = value.split('://')[:2]
splitValue = value.split(":")