mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
removing xmlcharrefreplace error handler as it seems that it wasn't such a good idea at the end
This commit is contained in:
parent
c3bb5a03e1
commit
90e84c9a6d
2 changed files with 3 additions and 3 deletions
|
|
@ -1798,7 +1798,7 @@ def getUnicode(value, encoding=None, system=False):
|
|||
if isinstance(value, unicode):
|
||||
return value
|
||||
elif isinstance(value, basestring):
|
||||
return unicode(value, encoding or UNICODE_ENCODING, errors="xmlcharrefreplace")
|
||||
return unicode(value, encoding or UNICODE_ENCODING, errors="replace")
|
||||
else:
|
||||
return unicode(value) # encoding ignored for non-basestring instances
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue