mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Fix for an issue where False value was displayed for --is.. switches
This commit is contained in:
parent
ea77e7d9d1
commit
e7f78bf04f
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ class Dump:
|
|||
def string(self, header, data, sort=True):
|
||||
if isListLike(data):
|
||||
self.lister(header, data, sort)
|
||||
elif data:
|
||||
elif data is not None:
|
||||
data = getUnicode(data)
|
||||
|
||||
if data[-1] == '\n':
|
||||
|
|
|
|||
Loading…
Reference in a new issue