Skip to content

Commit c181e90

Browse files
committed
Minor fix
1 parent c51e219 commit c181e90

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/request/inject.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,8 @@ def getValue(expression, blind=True, union=True, error=True, time=True, fromUser
423423

424424
if not kb.testMode and value is None and Backend.getDbms() and conf.dbmsHandler and not conf.noCast and not conf.hexConvert:
425425
warnMsg = "in case of continuous data retrieval problems you are advised to try "
426-
warnMsg += "a switch '--no-cast' or switch '--hex'"
426+
warnMsg += "a switch '--no-cast' "
427+
warnMsg += "or switch '--hex'" if Backend.getIdentifiedDbms() not in (DBMS.ACCESS, DBMS.FIREBIRD) else ""
427428
singleTimeWarnMessage(warnMsg)
428429

429430
return extractExpectedValue(value, expected)

0 commit comments

Comments
 (0)