mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
minor fix
This commit is contained in:
parent
7d37a650d0
commit
2face9799a
|
@ -127,7 +127,7 @@ class Enumeration(GenericEnumeration):
|
||||||
if isinstance(tblList[0], (set, tuple, list)):
|
if isinstance(tblList[0], (set, tuple, list)):
|
||||||
tblList = tblList[0]
|
tblList = tblList[0]
|
||||||
else:
|
else:
|
||||||
errMsg = "unable to retrieve the tables"
|
errMsg = "unable to retrieve the tables "
|
||||||
errMsg += "on database '%s'" % conf.db
|
errMsg += "on database '%s'" % conf.db
|
||||||
raise sqlmapNoneDataException, errMsg
|
raise sqlmapNoneDataException, errMsg
|
||||||
|
|
||||||
|
|
|
@ -198,7 +198,7 @@ class Enumeration(GenericEnumeration):
|
||||||
if isinstance(tblList[0], (set, tuple, list)):
|
if isinstance(tblList[0], (set, tuple, list)):
|
||||||
tblList = tblList[0]
|
tblList = tblList[0]
|
||||||
else:
|
else:
|
||||||
errMsg = "unable to retrieve the tables"
|
errMsg = "unable to retrieve the tables "
|
||||||
errMsg += "on database '%s'" % conf.db
|
errMsg += "on database '%s'" % conf.db
|
||||||
raise sqlmapNoneDataException, errMsg
|
raise sqlmapNoneDataException, errMsg
|
||||||
|
|
||||||
|
|
|
@ -1541,7 +1541,7 @@ class Enumeration:
|
||||||
if isinstance(tblList[0], (set, tuple, list)):
|
if isinstance(tblList[0], (set, tuple, list)):
|
||||||
tblList = tblList[0]
|
tblList = tblList[0]
|
||||||
else:
|
else:
|
||||||
errMsg = "unable to retrieve the tables"
|
errMsg = "unable to retrieve the tables "
|
||||||
errMsg += "on database '%s'" % conf.db
|
errMsg += "on database '%s'" % conf.db
|
||||||
raise sqlmapNoneDataException, errMsg
|
raise sqlmapNoneDataException, errMsg
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user