mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #2060 (ParseError has been added in Python 2.7)
This commit is contained in:
parent
7cca56edfa
commit
9105f259cd
3 changed files with 4 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue