mercurial/scmutil.py
changeset 14226 73cca883370d
parent 14225 f0ca440b5722
child 14227 94985b5a8278
--- a/mercurial/scmutil.py	Fri May 06 14:54:05 2011 +0200
+++ b/mercurial/scmutil.py	Fri May 06 14:58:04 2011 +0200
@@ -363,7 +363,7 @@
 def osrcpath():
     '''return default os-specific hgrc search path'''
     path = systemrcpath()
-    path.extend(user_rcpath())
+    path.extend(userrcpath())
     path = [os.path.normpath(f) for f in path]
     return path
 
@@ -415,7 +415,7 @@
         path.extend(rcfiles('/etc/mercurial'))
         return path
 
-    def user_rcpath():
+    def userrcpath():
         return [os.path.expanduser('~/.hgrc')]
 
 else:
@@ -453,7 +453,7 @@
                         rcpath.append(os.path.join(p, f))
         return rcpath
 
-    def user_rcpath():
+    def userrcpath():
         '''return os-specific hgrc search path to the user dir'''
         home = os.path.expanduser('~')
         path = [os.path.join(home, 'mercurial.ini'),