Language update

This commit is contained in:
Miroslav Stampar
2014-09-08 14:48:31 +02:00
parent 53d0d5bf8b
commit bfc8ab0e35
2 changed files with 2 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ def checkSqlInjection(place, parameter, value):
if kb.extendTests is None:
_ = (Format.getErrorParsedDBMSes() if Backend.getErrorParsedDBMSes() else kb.heuristicDbms)
msg = "do you want to include all tests for '%s' " % _
msg += "extending provided level (%d) and risk (%s)? [Y/n]" % (conf.level, conf.risk)
msg += "extending provided level (%d) and risk (%s) values? [Y/n]" % (conf.level, conf.risk)
kb.extendTests = [] if readInput(msg, default='Y').upper() != 'Y' else (Backend.getErrorParsedDBMSes() or [kb.heuristicDbms])
elif kb.extendTests is None and conf.level < 5 and conf.risk < 3:
msg = "do you want to include all tests for '%s' " % conf.dbms