diff -r 7f4f4f913393 mgmt/client/haclient.py.in --- a/mgmt/client/haclient.py.in Tue Oct 12 11:49:11 2010 +0900 +++ b/mgmt/client/haclient.py.in Tue Oct 12 11:51:37 2010 +0900 @@ -1321,7 +1321,7 @@ if not found_nv and target_role != "#default" : (parent_xml_node, add_obj_type, new_mid_elem) = manager.real_add_obj_type(rsc_xml, "meta_attributes", True) if parent_xml_node == None : - msg_box(_("Cannot %s %s: XML processing error")%(target_role, real_rsc_id)) + msgbox(_("Cannot %s %s: XML processing error")%(target_role, real_rsc_id)) return impl = getDOMImplementation() @@ -2547,14 +2547,14 @@ def update_crm_config(self, metadata, new_crm_config) : crm_config_xml_nodes = manager.xml_nodes["cib"].getElementsByTagName("crm_config") if len(crm_config_xml_nodes) < 1 : - msg_box("Cannot update the crm configuration: No \"crm_config\" in CIB") + msgbox("Cannot update the crm configuration: No \"crm_config\" in CIB") return (parent_xml_node, add_obj_type, new_mid_elem) = \ manager.real_add_obj_type(crm_config_xml_nodes[0], "cluster_property_set") if parent_xml_node == None : - msg_box("Cannot update the crm configuration") + msgbox("Cannot update the crm configuration") return nv_xml_nodes = {}