Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74e82b2 commit 4457912Copy full SHA for 4457912
1 file changed
lib/controller/checks.py
@@ -763,7 +763,9 @@ def _(page):
763
kb.ignoreCasted = readInput(message, default='Y' if conf.multipleTargets else 'N').upper() != 'N'
764
765
elif result:
766
- infoMsg += "be injectable (possible DBMS: '%s')" % (Format.getErrorParsedDBMSes() or UNKNOWN_DBMS)
+ infoMsg += "be injectable"
767
+ if Backend.getErrorParsedDBMSes():
768
+ infoMsg += " (possible DBMS: '%s')" % Format.getErrorParsedDBMSes()
769
logger.info(infoMsg)
770
771
else:
0 commit comments