Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 987f167 commit 998eb70Copy full SHA for 998eb70
1 file changed
lib/request/basic.py
@@ -264,7 +264,7 @@ def processResponse(page, responseHeaders):
264
logger.info("parsed error message: '%s'" % msg)
265
266
for regex in (EVENTVALIDATION_REGEX, VIEWSTATE_REGEX):
267
- match = re.search(regex, page)
+ match = re.search(regex, page, re.I)
268
if match and PLACE.POST in conf.parameters:
269
name, value = match.groups()
270
conf.parameters[PLACE.POST] = re.sub("(?i)(%s=)[^&]+" % name, r"\g<1>%s" % value, conf.parameters[PLACE.POST])
0 commit comments