From d74b976c41d4b3019c335cd009f38060f612002a Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 19 Aug 2008 10:48:39 +0100 Subject: [PATCH] xend: fixes a typo in the PIF class of the Xen-API code. Signed-off-by: Stefan Berger --- tools/python/xen/xend/XendPIF.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendPIF.py b/tools/python/xen/xend/XendPIF.py index 2a2e78acc2..60524813f3 100644 --- a/tools/python/xen/xend/XendPIF.py +++ b/tools/python/xen/xend/XendPIF.py @@ -101,7 +101,7 @@ def linux_get_mtu(device): def linux_get_mac(device): return _linux_get_pif_param(device, 'link/ether') -def _linux_get_pif_parm(device, param_name): +def _linux_get_pif_param(device, param_name): ip_get_dev_data = 'ip link show %s' % device rc, output = commands.getstatusoutput(ip_get_dev_data) if rc == 0: -- 2.30.2