Mercurial > public > mercurial-scm > hg
diff mercurial/templatekw.py @ 15947:bdd1ed80e26e stable
templatekw: fix phase keywords
author | Wagner Bruna <wbruna@softwareexpress.com.br> |
---|---|
date | Fri, 20 Jan 2012 13:10:01 -0200 |
parents | a1f818a2b50d |
children | 293dd81e4601 |
line wrap: on
line diff
--- a/mercurial/templatekw.py Fri Jan 20 12:57:13 2012 -0200 +++ b/mercurial/templatekw.py Fri Jan 20 13:10:01 2012 -0200 @@ -276,11 +276,11 @@ return ctx.hex() def showphase(repo, ctx, templ, **args): - """:rev: String. The changeset phase name.""" + """:phase: String. The changeset phase name.""" return ctx.phasestr() def showphaseidx(repo, ctx, templ, **args): - """:rev: Integer. The changeset phase index.""" + """:phaseidx: Integer. The changeset phase index.""" return ctx.phase() def showrev(repo, ctx, templ, **args):