Mercurial > public > mercurial-scm > hg-stable
diff hgext/rebase.py @ 38675:35b3f686157a
rebase: correct misleading message in --confirm option
Differential Revision: https://phab.mercurial-scm.org/D3939
author | Sushil khanchi <sushilkhanchi97@gmail.com> |
---|---|
date | Thu, 12 Jul 2018 22:35:54 +0530 |
parents | a50482254b0a |
children | b3d0c97a0820 |
line wrap: on
line diff
--- a/hgext/rebase.py Thu Jul 12 22:23:51 2018 +0530 +++ b/hgext/rebase.py Thu Jul 12 22:35:54 2018 +0530 @@ -854,7 +854,7 @@ rbsrt = rebaseruntime(repo, ui, inmemory=True, opts=opts) confirm = opts.get('confirm') if confirm: - ui.status(_('starting rebase...\n')) + ui.status(_('starting in-memory rebase\n')) else: ui.status(_('starting dry-run rebase; repository will not be ' 'changed\n'))