# HG changeset patch # User Kyle Lippincott # Date 1512519068 28800 # Node ID fed946edc293a109f47ee98c07bb247a3e77976c # Parent 63f6f9db9c3a04cc015f0092b2ef0c35969e3b72 help: fix output for `hg help -e evolve` wrt 'touch' command Currently, when running `hg help -e evolve`, the output looks like this on my screen: touch create successors that are identical to their predecessors except With this change, it looks like this: touch create successors that are identical to their predecessors except for the changeset ID diff -r 63f6f9db9c3a -r fed946edc293 hgext3rd/evolve/cmdrewrite.py --- a/hgext3rd/evolve/cmdrewrite.py Tue Dec 05 16:08:50 2017 -0800 +++ b/hgext3rd/evolve/cmdrewrite.py Tue Dec 05 16:11:08 2017 -0800 @@ -1000,8 +1000,9 @@ # allow to choose the seed ? _('[-r] revs')) def touch(ui, repo, *revs, **opts): - """create successors that are identical to their predecessors except - for the changeset ID + # Do not split this next line to fit into 80 cols, it is displayed when + # running `hg` with no arguments! + """create successors that are identical to their predecessors except for the changeset ID This is used to "resurrect" changesets """