# HG changeset patch # User Yuya Nishihara # Date 2015-09-26 03:19:39 # Node ID 4628b26f040e666a09c00e6747a0c3a7da793029 # Parent a2291c9c85a1d7f56f419cf446101ca0d375fa52 templatekw: hide help of "branches" by DEPRECATED marker See 43e872a35f8a for details. diff --git a/mercurial/templatekw.py b/mercurial/templatekw.py --- a/mercurial/templatekw.py +++ b/mercurial/templatekw.py @@ -205,7 +205,7 @@ def showbranch(**args): def showbranches(**args): """:branches: List of strings. The name of the branch on which the changeset was committed. Will be empty if the branch name was - default. + default. (DEPRECATED) """ branch = args['ctx'].branch() if branch != 'default':