Mercurial > public > mercurial-scm > hg-stable
diff hgext/rebase.py @ 23520:de143427c499
rebase: show a note for updated mq patches
It deserves more than a debug message. Show a note like:
updating mq patch p0.patch to 5:9ecc820b1737
The message could also refer to "qrefresh" instead. Same same.
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Thu, 11 Oct 2012 23:22:02 +0200 |
parents | 8872d1bf30da |
children | c51d6c043bb1 |
line wrap: on
line diff
--- a/hgext/rebase.py Wed Dec 10 06:20:35 2014 +0100 +++ b/hgext/rebase.py Thu Oct 11 23:22:02 2012 +0200 @@ -713,7 +713,8 @@ for rev in sorted(mqrebase, reverse=True): if rev not in skipped: name, isgit = mqrebase[rev] - repo.ui.debug('import mq patch %d (%s)\n' % (state[rev], name)) + repo.ui.note(_('updating mq patch %s to %s:%s\n') % + (name, state[rev], repo[state[rev]])) mq.qimport(repo, (), patchname=name, git=isgit, rev=[str(state[rev])]) else: