mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
minor fix for not displaying 'None' but None in enumeration when data unavailable
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user