mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
Fix for an issue where False value was displayed for --is.. switches
This commit is contained in:
@@ -74,7 +74,7 @@ class Dump:
|
|||||||
def string(self, header, data, sort=True):
|
def string(self, header, data, sort=True):
|
||||||
if isListLike(data):
|
if isListLike(data):
|
||||||
self.lister(header, data, sort)
|
self.lister(header, data, sort)
|
||||||
elif data:
|
elif data is not None:
|
||||||
data = getUnicode(data)
|
data = getUnicode(data)
|
||||||
|
|
||||||
if data[-1] == '\n':
|
if data[-1] == '\n':
|
||||||
|
|||||||
Reference in New Issue
Block a user