From f6a17cb1a870cc1e7accd7cbc03f92016b6a46df Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Thu, 18 Nov 2010 10:41:06 +0000 Subject: [PATCH] Revert wrong fix --- lib/core/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/agent.py b/lib/core/agent.py index 69f016274..bfde2a466 100644 --- a/lib/core/agent.py +++ b/lib/core/agent.py @@ -636,7 +636,7 @@ class Agent: regObj = getCompiledRegex("(?P%s.*?%s)" % (PAYLOAD_DELIMITER, PAYLOAD_DELIMITER)) for match in regObj.finditer(inpStr): - retVal = retVal.replace(match.group("result"), match.group("result").strip(PAYLOAD_DELIMITER)) + retVal = retVal.replace(match.group("result"), urlencode(match.group("result").strip(PAYLOAD_DELIMITER), convall=True)) else: retVal = retVal.replace(PAYLOAD_DELIMITER, '')