From: Ewan Mellor Date: Thu, 18 Jan 2007 17:01:44 +0000 (+0000) Subject: Fix get_config_value call. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15371^2~133^2~9^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1ab8a4153bdbc60e8801cc9d27c194fc7c7d8ad3;p=xen.git Fix get_config_value call. Signed-off-by: Ewan Mellor --- diff --git a/tools/python/xen/xend/XendOptions.py b/tools/python/xen/xend/XendOptions.py index fac15eb15b..26cc54765e 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 get_config_value(self, name, val) + return self.get_config_value(self, name, val) def get_xen_api_server(self): """Get the Xen-API server configuration.