From: Keir Fraser Date: Tue, 19 Aug 2008 09:48:39 +0000 (+0100) Subject: xend: fixes a typo in the PIF class of the Xen-API code. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14146 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d74b976c41d4b3019c335cd009f38060f612002a;p=xen.git xend: fixes a typo in the PIF class of the Xen-API code. Signed-off-by: Stefan Berger --- 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: