From 1ab8a4153bdbc60e8801cc9d27c194fc7c7d8ad3 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Thu, 18 Jan 2007 17:01:44 +0000 Subject: [PATCH] Fix get_config_value call. Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendOptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.30.2