===== tools/python/xen/xend/XendRoot.py 1.25 vs edited ===== --- 1.25/tools/python/xen/xend/XendRoot.py 2005-05-31 22:35:30 +09:00 +++ edited/tools/python/xen/xend/XendRoot.py 2005-06-02 02:25:12 +09:00 @@ -217,19 +217,6 @@ self.logError('Config file does not exist: %s', self.config_path) self.config = ['xend-config'] - def get_config(self, name=None): - """Get the configuration element with the given name, or - the whole configuration if no name is given. - - @param name: element name (optional) - @return: config or none - """ - if name is None: - val = self.config - else: - val = sxp.child(self.config, name) - return val - def get_config_value(self, name, val=None): """Get the value of an atomic configuration element.