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

Skip to content

Commit 2face97

Browse files
committed
minor fix
1 parent 7d37a65 commit 2face97

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

plugins/dbms/maxdb/enumeration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def getColumns(self, onlyColNames=False):
127127
if isinstance(tblList[0], (set, tuple, list)):
128128
tblList = tblList[0]
129129
else:
130-
errMsg = "unable to retrieve the tables"
130+
errMsg = "unable to retrieve the tables "
131131
errMsg += "on database '%s'" % conf.db
132132
raise sqlmapNoneDataException, errMsg
133133

plugins/dbms/sybase/enumeration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def getColumns(self, onlyColNames=False):
198198
if isinstance(tblList[0], (set, tuple, list)):
199199
tblList = tblList[0]
200200
else:
201-
errMsg = "unable to retrieve the tables"
201+
errMsg = "unable to retrieve the tables "
202202
errMsg += "on database '%s'" % conf.db
203203
raise sqlmapNoneDataException, errMsg
204204

plugins/generic/enumeration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1541,7 +1541,7 @@ def dumpTable(self, foundData=None):
15411541
if isinstance(tblList[0], (set, tuple, list)):
15421542
tblList = tblList[0]
15431543
else:
1544-
errMsg = "unable to retrieve the tables"
1544+
errMsg = "unable to retrieve the tables "
15451545
errMsg += "on database '%s'" % conf.db
15461546
raise sqlmapNoneDataException, errMsg
15471547

0 commit comments

Comments
 (0)