From 7fa9c8e938e5f41822c56810f69476a6f6d5389c Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 20 Nov 2015 11:38:26 +0100 Subject: [PATCH] Patch for an Issue #1546 --- 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 68fc22817..6327aeeb8 100644 --- a/lib/core/agent.py +++ b/lib/core/agent.py @@ -1053,7 +1053,7 @@ class Agent(object): """ _ = re.escape(PAYLOAD_DELIMITER) - return re.sub("(?s)(%s.*?%s)" % (_, _), ("%s%s%s" % (PAYLOAD_DELIMITER, payload, PAYLOAD_DELIMITER)).replace("\\", r"\\"), value) if value else value + return re.sub("(?s)(%s.*?%s)" % (_, _), ("%s%s%s" % (PAYLOAD_DELIMITER, getUnicode(payload), PAYLOAD_DELIMITER)).replace("\\", r"\\"), value) if value else value def runAsDBMSUser(self, query): if conf.dbmsCred and "Ad Hoc Distributed Queries" not in query: