From e17d212c238188cbafbac95c9ab7005956528eaf Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Sun, 15 Feb 2015 20:07:52 +0000 Subject: [PATCH] bug fix introduced with 863d5a6281a5e24303d38ea99515bdb128456889 --- lib/controller/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 653f7d8d8..f636568a0 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -233,7 +233,7 @@ def checkSqlInjection(place, parameter, value): # Skip test if the level is higher than the provided (or default) # value # Parse test's - if not conf.testFilter and not test.level > conf.level: + if not conf.testFilter and test.level > conf.level: debugMsg = "skipping test '%s' because the level (%d) " % (title, test.level) debugMsg += "is higher than the provided (%d)" % conf.level logger.debug(debugMsg)