# HG changeset patch # User Matt Mackall # Date 2013-11-21 17:49:31 # Node ID 43e872a35f8a5cc2d460526bbd894b1d76afc85b # Parent 986d09e696ff83def479a2e7adb237131d10dc09 help: drop help for branches template keyword The {branches} keyword dates to pre-1.0 Mercurial's tag-like branch scheme which allowed changesets to be on multiple branches. This is the last visible vestige of that scheme, users should instead be using {branch}, possibly with if(). diff --git a/mercurial/templatekw.py b/mercurial/templatekw.py --- a/mercurial/templatekw.py +++ b/mercurial/templatekw.py @@ -390,6 +390,7 @@ dockeywords = { 'parents': _showparents, } dockeywords.update(keywords) +del dockeywords['branches'] # tell hggettext to extract docstrings from these functions: i18nfunctions = dockeywords.values()