Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 369006c

Browse files
committed
Bug fix
1 parent 7e35eb0 commit 369006c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/controller/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def checkSqlInjection(place, parameter, value):
208208
logger.debug(debugMsg)
209209
continue
210210

211-
if conf.dbms is not None and not intersect(conf.dbms.lower(), [value.lower() for value in arrayizeValue(dbms)]):
211+
if conf.dbms is not None and not intersect(conf.dbms.lower(), [_.lower() for _ in arrayizeValue(dbms)]):
212212
debugMsg = "skipping test '%s' because " % title
213213
debugMsg += "the provided DBMS is %s" % conf.dbms
214214
logger.debug(debugMsg)

0 commit comments

Comments
 (0)