Mercurial > hg
changeset 15947:bdd1ed80e26e stable
templatekw: fix phase keywords
author | Wagner Bruna <wbruna@softwareexpress.com.br> |
---|---|
date | Fri, 20 Jan 2012 13:10:01 -0200 |
parents | b9c7ac405757 |
children | 536856769512 |
files | mercurial/templatekw.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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):