ui: Rename has_config to has_section.
authorBryan O'Sullivan <bos@serpentine.com>
Sun, 27 May 2007 13:50:59 -0700
changeset 4481 1b5b98837bb5
parent 4480 6b84c8d2f66f
child 4482 62019c4427e3
ui: Rename has_config to has_section.
hgext/acl.py
mercurial/ui.py
--- a/hgext/acl.py
+++ b/hgext/acl.py
@@ -55,7 +55,7 @@ class checker(object):
 
     def buildmatch(self, key):
         '''return tuple of (match function, list enabled).'''
-        if not self.ui.has_config(key):
+        if not self.ui.has_section(key):
             self.ui.debug(_('acl: %s not enabled\n') % key)
             return None, False
 
--- a/mercurial/ui.py
+++ b/mercurial/ui.py
@@ -270,7 +270,7 @@ class ui(object):
             result = result.replace(",", " ").split()
         return result
 
-    def has_config(self, section, untrusted=False):
+    def has_section(self, section, untrusted=False):
         '''tell whether section exists in config.'''
         cdata = self._get_cdata(untrusted)
         return cdata.has_section(section)