direct-io.hg
changeset 13424:bf3658f32651
Fix get_config_value fix
Signed-off-by: Alastair Tse <atse@xensource.com>
Signed-off-by: Alastair Tse <atse@xensource.com>
author | Alastair Tse <atse@xensource.com> |
---|---|
date | Thu Jan 18 17:24:40 2007 +0000 (2007-01-18) |
parents | 0cd1ad6dc19d |
children | 4cad44a3ad86 |
files | tools/python/xen/xend/XendOptions.py |
line diff
1.1 --- a/tools/python/xen/xend/XendOptions.py Thu Jan 18 17:01:44 2007 +0000 1.2 +++ b/tools/python/xen/xend/XendOptions.py Thu Jan 18 17:24:40 2007 +0000 1.3 @@ -312,7 +312,7 @@ class XendOptionsFile(XendOptions): 1.4 raise XendError("invalid xend config %s: expected int: %s" % (name, v)) 1.5 1.6 def get_config_string(self, name, val=None): 1.7 - return self.get_config_value(self, name, val) 1.8 + return self.get_config_value(name, val) 1.9 1.10 def get_xen_api_server(self): 1.11 """Get the Xen-API server configuration.