diff -r ac38e889b33a -r f30e59703d98 mercurial/templatekw.py --- 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()))