Mercurial > hg
changeset 9111:ac3f1e6696eb
mq: use ui.status when pushing and popping patches
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Fri, 10 Jul 2009 23:24:35 +0200 |
parents | 561ff8d9e4f0 |
children | 54eb3782d32f |
files | hgext/mq.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/mq.py Thu Jul 09 23:59:03 2009 +0200 +++ b/hgext/mq.py Fri Jul 10 23:24:35 2009 +0200 @@ -555,7 +555,7 @@ if not pushable: self.explain_pushable(patchname, all_patches=True) continue - self.ui.warn(_("applying %s\n") % patchname) + self.ui.status(_("applying %s\n") % patchname) pf = os.path.join(patchdir, patchname) try: @@ -1081,7 +1081,7 @@ repo.dirstate.forget(f) repo.dirstate.setparents(qp, nullid) for patch in reversed(self.applied[start:end]): - self.ui.warn(_("popping %s\n") % patch.name) + self.ui.status(_("popping %s\n") % patch.name) del self.applied[start:end] self.strip(repo, rev, update=False, backup='strip') if len(self.applied):