Mercurial > hg
changeset 26495:7837653cb39a
rebase: suggest help -e histedit
Users unfamiliar with an extension should be reading the
documentation for the feature, not the command.
author | timeless@mozdev.org |
---|---|
date | Tue, 06 Oct 2015 15:01:25 -0400 |
parents | 832f40d2af53 |
children | b885ab9ca182 |
files | hgext/rebase.py tests/test-rebase-parameters.t |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/rebase.py Tue Oct 06 15:05:40 2015 -0400 +++ b/hgext/rebase.py Tue Oct 06 15:01:25 2015 -0400 @@ -217,7 +217,7 @@ keepopen = opts.get('keepopen', False) if opts.get('interactive'): - help = "hg help histedit" + help = "hg help -e histedit" msg = _("interactive history editing is supported by the " "'histedit' extension (see \"%s\")") % help raise util.Abort(msg)
--- a/tests/test-rebase-parameters.t Tue Oct 06 15:05:40 2015 -0400 +++ b/tests/test-rebase-parameters.t Tue Oct 06 15:01:25 2015 -0400 @@ -490,11 +490,11 @@ saved backup bundle to $TESTTMP/b3/.hg/strip-backup/e4e3f3546619-b0841178-backup.hg (glob) $ hg rebase -i - abort: interactive history editing is supported by the 'histedit' extension (see "hg help histedit") + abort: interactive history editing is supported by the 'histedit' extension (see "hg help -e histedit") [255] $ hg rebase --interactive - abort: interactive history editing is supported by the 'histedit' extension (see "hg help histedit") + abort: interactive history editing is supported by the 'histedit' extension (see "hg help -e histedit") [255] $ cd ..