This commit is contained in:
Miroslav Stampar 2020-02-28 14:08:43 +01:00
parent 83fecfc1ba
commit 60a2d74f2b
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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():