mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 08:14:24 +03:00
minor fix for not displaying 'None' but None in enumeration when data unavailable
This commit is contained in:
parent
a424de3102
commit
68e08d2749
|
@ -88,10 +88,8 @@ class Dump:
|
|||
|
||||
return
|
||||
|
||||
data = getUnicode(data)
|
||||
|
||||
if data:
|
||||
data = self._formatString(data)
|
||||
data = self._formatString(getUnicode(data))
|
||||
|
||||
if data[-1] == '\n':
|
||||
data = data[:-1]
|
||||
|
|
Loading…
Reference in New Issue
Block a user