mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 23:25:24 +00:00
lxml change
This commit is contained in:
parent
ace30ca952
commit
a933ffb00f
1 changed files with 2 additions and 2 deletions
|
@ -169,8 +169,8 @@ class wvmNetwork(wvmConnect):
|
||||||
def network(doc):
|
def network(doc):
|
||||||
result = []
|
result = []
|
||||||
for net in doc.xpath('/network/ip/dhcp/host'):
|
for net in doc.xpath('/network/ip/dhcp/host'):
|
||||||
host = net.xpath('@ip')[0].text
|
host = net.xpath('@ip')[0]
|
||||||
mac = net.xpathEval('@mac')[0].text
|
mac = net.xpathEval('@mac')[0]
|
||||||
result.append({'host': host, 'mac': mac})
|
result.append({'host': host, 'mac': mac})
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue