Mercurial > hg
changeset 42022:1f567a9e25bd
chistedit: change in-progress message
Saying "running histedit" is an artifact of when chistedit was a
separate thing from histedit. I found the message a bit confusing,
since wasn't I running histedit from the beginning, just from the
curses interface?
The whole thing is now histedit, both the curses interface and the
underlying procedure to apply a plan, so let's use a message that
doesn't make a distinction.
author | Jordi Gutiérrez Hermoso <jordigh@octave.org> |
---|---|
date | Tue, 26 Mar 2019 11:53:30 -0400 |
parents | 4c700c847aa2 |
children | bf87d34a675c |
files | hgext/histedit.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/histedit.py Tue Mar 26 10:21:17 2019 -0400 +++ b/hgext/histedit.py Tue Mar 26 11:53:30 2019 -0400 @@ -1497,7 +1497,7 @@ ui.write(_("histedit aborted\n")) return 0 if type(rc) is list: - ui.status(_("running histedit\n")) + ui.status(_("performing changes\n")) rules = makecommands(rc) filename = repo.vfs.join('chistedit') with open(filename, 'w+') as fp: