mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Fix for an Issue #900
This commit is contained in:
parent
4d5b48b2ae
commit
97cc679f9c
|
@ -2025,7 +2025,7 @@ def getUnicode(value, encoding=None, noneToNull=False):
|
|||
return NULL
|
||||
|
||||
if isListLike(value):
|
||||
value = list(getUnicode(_, encoding, system, noneToNull) for _ in value)
|
||||
value = list(getUnicode(_, encoding, noneToNull) for _ in value)
|
||||
return value
|
||||
|
||||
if isinstance(value, unicode):
|
||||
|
|
Loading…
Reference in New Issue
Block a user