From 8585107e3d81b734ef59fca2e03b6c58441e92cd Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 22 Dec 2011 12:21:30 +0000 Subject: [PATCH] minor update --- lib/techniques/error/use.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/techniques/error/use.py b/lib/techniques/error/use.py index f3fb205aa..0e308e15c 100644 --- a/lib/techniques/error/use.py +++ b/lib/techniques/error/use.py @@ -131,8 +131,8 @@ def __oneShotErrorUse(expression, field): conf.hashDB.write(expression, retVal) else: - check = "%s(?P.*?)%s" % (kb.chars.start, kb.chars.stop) - retVal = extractRegexResult(check, retVal, re.DOTALL | re.IGNORECASE) or retVal + _ = "%s(?P.*?)%s" % (kb.chars.start, kb.chars.stop) + retVal = extractRegexResult(_, retVal, re.DOTALL | re.IGNORECASE) or retVal return safecharencode(retVal) if kb.safeCharEncode else retVal