From 369006ca73cd7822778c3ede3b935b53c5f2952c Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 7 Oct 2013 12:54:19 +0200 Subject: [PATCH] Bug fix --- 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 ab8894e10..4b7b0c838 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -208,7 +208,7 @@ def checkSqlInjection(place, parameter, value): logger.debug(debugMsg) continue - if conf.dbms is not None and not intersect(conf.dbms.lower(), [value.lower() for value in arrayizeValue(dbms)]): + if conf.dbms is not None and not intersect(conf.dbms.lower(), [_.lower() for _ in arrayizeValue(dbms)]): debugMsg = "skipping test '%s' because " % title debugMsg += "the provided DBMS is %s" % conf.dbms logger.debug(debugMsg)