mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
minor fix for not displaying 'None' but None in enumeration when data unavailable
This commit is contained in:
parent
a424de3102
commit
68e08d2749
1 changed files with 1 additions and 3 deletions
|
|
@ -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 a new issue