From b8a73ce6fe1a49f1d8658d5e03350243219371b0 Mon Sep 17 00:00:00 2001 From: Alastair Tse Date: Thu, 18 Jan 2007 17:24:40 +0000 Subject: [PATCH] Fix get_config_value fix Signed-off-by: Alastair Tse --- 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 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. -- 2.30.2