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

Skip to content

Commit b4c730f

Browse files
committed
Minor refactoring
1 parent fba1720 commit b4c730f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.5.122"
22+
VERSION = "1.0.5.123"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

plugins/generic/databases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ def getColumns(self, onlyColNames=False, colTuple=None, bruteForce=None, dumpMod
450450

451451
elif Backend.isDbms(DBMS.ACCESS):
452452
errMsg = "cannot retrieve column names, "
453-
errMsg += "back-end DBMS is Access"
453+
errMsg += "back-end DBMS is %s" % DBMS.ACCESS
454454
logger.error(errMsg)
455455
bruteForce = True
456456

0 commit comments

Comments
 (0)