Some more cleanup related to the last commit (unneeded manual crafting/unneeded closing with ;)

This commit is contained in:
Miroslav Stampar 2012-09-25 14:29:22 +02:00
parent 560e0fcb25
commit ec43ceec40

View File

@ -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)