From ec43ceec403fd754323114f8841c831b9b2be1da Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 25 Sep 2012 14:29:22 +0200 Subject: [PATCH] Some more cleanup related to the last commit (unneeded manual crafting/unneeded closing with ;) --- lib/request/inject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/request/inject.py b/lib/request/inject.py index 89436d6de..4eb0e86d1 100644 --- a/lib/request/inject.py +++ b/lib/request/inject.py @@ -468,7 +468,7 @@ def goStacked(expression, silent=False): comment = queries[Backend.getIdentifiedDbms()].comment.query query = agent.prefixQuery(";%s" % expression) - query = agent.suffixQuery("%s;%s" % (query, comment)) + query = agent.suffixQuery(query, comment) payload = agent.payload(newValue=query) Request.queryPage(payload, content=False, silent=silent, noteResponseTime=False, timeBasedCompare=True)