mercurial/templatekw.py
changeset 34539 f30e59703d98
parent 34538 ac38e889b33a
child 34540 1c7c4445686f
--- a/mercurial/templatekw.py	Mon Sep 18 23:31:01 2017 +0900
+++ b/mercurial/templatekw.py	Mon Sep 18 23:53:05 2017 +0900
@@ -653,10 +653,10 @@
         return 'obsolete'
     return ''
 
-@templatekeyword('peerpaths')
-def showpeerpaths(repo, **args):
+@templatekeyword('peerurls')
+def showpeerurls(repo, **args):
     """A dictionary of repository locations defined in the [paths] section
-    of your configuration file. (EXPERIMENTAL)"""
+    of your configuration file."""
     # see commands.paths() for naming of dictionary keys
     paths = repo.ui.paths
     urls = util.sortdict((k, p.rawloc) for k, p in sorted(paths.iteritems()))