This commit is contained in:
brent s. 2020-05-12 23:17:44 -04:00
parent 883f15beee
commit 71df39ca11
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
1 changed files with 2 additions and 1 deletions

View File

@ -94,7 +94,8 @@ class Tunnel(object):
self.parse()

def _allocations(self):
for _allocation_xml in self.xml.findall('allocs'):
_allocs_xml = self.xml.find('allocs')
for _allocation_xml in _allocs_xml.findall('alloc'):
self.allocations.append(Allocation(_allocation_xml))
return(None)