From 5e2144b1131ffbc0d081d7cb73a2dfefebb29150 Mon Sep 17 00:00:00 2001 From: catborise Date: Thu, 19 Jul 2018 09:23:19 +0300 Subject: [PATCH] libxml2 artifact cleaned --- vrtManager/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrtManager/network.py b/vrtManager/network.py index ab2d68f..c1de4f3 100644 --- a/vrtManager/network.py +++ b/vrtManager/network.py @@ -170,7 +170,7 @@ class wvmNetwork(wvmConnect): result = [] for net in doc.xpath('/network/ip/dhcp/host'): host = net.xpath('@ip')[0] - mac = net.xpathEval('@mac')[0] + mac = net.xpath('@mac')[0] result.append({'host': host, 'mac': mac}) return result