1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 03:54:15 +00:00

lxml change

This commit is contained in:
catborise 2018-06-27 10:43:09 +03:00
parent ace30ca952
commit a933ffb00f

View file

@ -169,8 +169,8 @@ class wvmNetwork(wvmConnect):
def network(doc):
result = []
for net in doc.xpath('/network/ip/dhcp/host'):
host = net.xpath('@ip')[0].text
mac = net.xpathEval('@mac')[0].text
host = net.xpath('@ip')[0]
mac = net.xpathEval('@mac')[0]
result.append({'host': host, 'mac': mac})
return result