From 2bf212ffa96648c0e3485bd35f295ad28368306c Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sun, 27 Feb 2011 20:43:38 +0000 Subject: [PATCH] minor minor update --- lib/core/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/common.py b/lib/core/common.py index a078572c4..91631bc3a 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -2406,7 +2406,7 @@ def removeReflectiveValues(content, payload): while 2 * REFLECTED_NON_ALPHA_NUM_REGEX in regex: regex = regex.replace(2 * REFLECTED_NON_ALPHA_NUM_REGEX, REFLECTED_NON_ALPHA_NUM_REGEX) - retVal = re.sub(regex, REFLECTED_VALUE_MARKER, content) + retVal = re.sub(regex, REFLECTED_VALUE_MARKER, content, re.I) if retVal != content: debugMsg = "reflective value found and filtered out"