mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
Fixes #2060 (ParseError has been added in Python 2.7)
This commit is contained in:
@@ -132,7 +132,7 @@ def _oneShotUnionUse(expression, unpack=True, limited=False):
|
||||
row.append(child.attrib.get(column, NULL))
|
||||
retVal += "%s%s%s" % (kb.chars.start, kb.chars.delimiter.join(row), kb.chars.stop)
|
||||
|
||||
except xml.etree.ElementTree.ParseError:
|
||||
except:
|
||||
pass
|
||||
else:
|
||||
retVal = getUnicode(retVal)
|
||||
|
||||
Reference in New Issue
Block a user