mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
Fixes #4126
This commit is contained in:
parent
83fecfc1ba
commit
60a2d74f2b
|
@ -9,8 +9,8 @@ jobs:
|
|||
dist: trusty
|
||||
- python: 3.6
|
||||
dist: trusty
|
||||
- python: 3.8
|
||||
dist: xenial
|
||||
- python: 3.9
|
||||
dist: bionic
|
||||
sudo: false
|
||||
git:
|
||||
depth: 1
|
||||
|
|
|
@ -41,7 +41,7 @@ def cleanupVals(text, tag):
|
|||
return text
|
||||
|
||||
def parseXmlNode(node):
|
||||
for element in node.getiterator("boundary"):
|
||||
for element in node.findall("boundary"):
|
||||
boundary = AttribDict()
|
||||
|
||||
for child in element.getchildren():
|
||||
|
@ -53,7 +53,7 @@ def parseXmlNode(node):
|
|||
|
||||
conf.boundaries.append(boundary)
|
||||
|
||||
for element in node.getiterator("test"):
|
||||
for element in node.findall("test"):
|
||||
test = AttribDict()
|
||||
|
||||
for child in element.getchildren():
|
||||
|
|
Loading…
Reference in New Issue
Block a user