##// END OF EJS Templates
templatekw: fix phase keywords
Wagner Bruna -
r15947:bdd1ed80 stable
parent child Browse files
Show More
@@ -276,11 +276,11 b' def shownode(repo, ctx, templ, **args):'
276 return ctx.hex()
276 return ctx.hex()
277
277
278 def showphase(repo, ctx, templ, **args):
278 def showphase(repo, ctx, templ, **args):
279 """:rev: String. The changeset phase name."""
279 """:phase: String. The changeset phase name."""
280 return ctx.phasestr()
280 return ctx.phasestr()
281
281
282 def showphaseidx(repo, ctx, templ, **args):
282 def showphaseidx(repo, ctx, templ, **args):
283 """:rev: Integer. The changeset phase index."""
283 """:phaseidx: Integer. The changeset phase index."""
284 return ctx.phase()
284 return ctx.phase()
285
285
286 def showrev(repo, ctx, templ, **args):
286 def showrev(repo, ctx, templ, **args):
General Comments 0
You need to be logged in to leave comments. Login now