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

Skip to content

Commit 7673f3e

Browse files
committed
Minor style update
1 parent 56965e3 commit 7673f3e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1212,7 +1212,7 @@ def parseTargetDirect():
12121212
pass
12131213
else:
12141214
errMsg = "sqlmap requires '%s' third-party library " % data[1]
1215-
errMsg += "in order to directly connect to the database "
1215+
errMsg += "in order to directly connect to the DBMS "
12161216
errMsg += "%s. You can download it from '%s'" % (dbmsName, data[2])
12171217
errMsg += ". Alternative is to use a package 'python-sqlalchemy' "
12181218
errMsg += "with support for dialect '%s' installed" % data[3]

lib/utils/deps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def checkDependencies():
4646
import jpype
4747
except ImportError:
4848
warnMsg = "sqlmap requires '%s' third-party library " % data[1]
49-
warnMsg += "in order to directly connect to the database "
49+
warnMsg += "in order to directly connect to the DBMS "
5050
warnMsg += "%s. Download from %s" % (dbmsName, data[2])
5151
logger.warn(warnMsg)
5252
missing_libraries.add(data[1])

0 commit comments

Comments
 (0)