mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +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
|
return
|
||||||
|
|
||||||
data = getUnicode(data)
|
|
||||||
|
|
||||||
if data:
|
if data:
|
||||||
data = self._formatString(data)
|
data = self._formatString(getUnicode(data))
|
||||||
|
|
||||||
if data[-1] == '\n':
|
if data[-1] == '\n':
|
||||||
data = data[:-1]
|
data = data[:-1]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user