From ec4440108b843621384152b100149c84bb254b1f Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sun, 2 Jan 2011 07:09:04 +0000 Subject: [PATCH] minor cosmetics --- lib/controller/checks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 4ad0848af..ce8dd2329 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -142,14 +142,14 @@ def checkSqlInjection(place, parameter, value): if getErrorParsedDBMS() and getErrorParsedDBMS() != dbms\ and kb.skipTests is None: - message = "heuristic test showed that the back-end DBMS could be '%s'." % getErrorParsedDBMS() + message = "parsed error message(s) showed that the back-end DBMS could be '%s'." % getErrorParsedDBMS() message += " do you want to skip test payloads specific for other DBMSes? [Y/n]" kb.skipTests = conf.realTest or readInput(message, default="Y") not in ("n", "N") if kb.skipTests: debugMsg = "skipping test '%s' because " % title - debugMsg += "the heuristic test showed that " - debugMsg += "the back-end DBMS could be " + debugMsg += "the parsed error message(s) showed " + debugMsg += "that the back-end DBMS could be " debugMsg += "%s" % getErrorParsedDBMS() logger.debug(debugMsg)