From d0514d18ec55bc73b2076b42cfc6e8ed2b434e4f Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 15 Oct 2010 12:49:03 +0000 Subject: [PATCH] removed that spaces from URI payloads --- 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 71298894b..4835355ba 100644 --- a/lib/core/agent.py +++ b/lib/core/agent.py @@ -90,7 +90,7 @@ class Agent: elif parameter == "User-Agent": retValue = value.replace(value, newValue) elif place == "URI": - retValue = value.replace("*", " %s " % newValue.replace(value, str())) + retValue = value.replace("*", "%s" % newValue.replace(value, str())) else: paramString = conf.parameters[place]