# HG changeset patch # User Pierre-Yves David # Date 1497626051 -7200 # Node ID e987b403d04784ef39f6eb9e23230503a54678c2 # Parent df4a1b02308f959a60c2239232cea1b4dd492a93 template: fix precursors documentation diff -r df4a1b02308f -r e987b403d047 hgext3rd/evolve/templatekw.py --- 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]