From: Alastair Tse Date: Thu, 18 Jan 2007 17:24:40 +0000 (+0000) Subject: Fix get_config_value fix X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15371^2~133^2~9^2~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b8a73ce6fe1a49f1d8658d5e03350243219371b0;p=xen.git Fix get_config_value fix Signed-off-by: Alastair Tse --- diff --git a/tools/python/xen/xend/XendOptions.py b/tools/python/xen/xend/XendOptions.py index 26cc54765e..a51ecb670a 100644 --- a/tools/python/xen/xend/XendOptions.py +++ b/tools/python/xen/xend/XendOptions.py @@ -312,7 +312,7 @@ class XendOptionsFile(XendOptions): raise XendError("invalid xend config %s: expected int: %s" % (name, v)) def get_config_string(self, name, val=None): - return self.get_config_value(self, name, val) + return self.get_config_value(name, val) def get_xen_api_server(self): """Get the Xen-API server configuration.