Mercurial > evolve
changeset 2600:e987b403d047
template: fix precursors documentation
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Fri, 16 Jun 2017 17:14:11 +0200 |
parents | df4a1b02308f |
children | 20c1e035101b |
files | hgext3rd/evolve/templatekw.py |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext3rd/evolve/templatekw.py Fri Jun 16 17:11:20 2017 +0200 +++ b/hgext3rd/evolve/templatekw.py Fri Jun 16 17:14:11 2017 +0200 @@ -65,8 +65,7 @@ @eh.templatekw("precursors") def shownextvisibleprecursors(repo, ctx, **args): - """Returns a string containing the list if the closest successors - displayed + """Returns a string containing the list of the closest precursors """ precursors = sorted(closestprecursors(repo, ctx.node())) precursors = [node.hex(p) for p in precursors]