mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
Fixes #4513
This commit is contained in:
@@ -330,6 +330,8 @@ def getUnicode(value, encoding=None, noneToNull=False):
|
||||
True
|
||||
>>> getUnicode(1) == u'1'
|
||||
True
|
||||
>>> getUnicode(None) == 'None'
|
||||
True
|
||||
"""
|
||||
|
||||
if noneToNull and value is None:
|
||||
|
||||
Reference in New Issue
Block a user