Mercurial > public > mercurial-scm > hg-stable
diff hgext/transplant.py @ 14741:39235b398248 stable
transplant: use ui out descriptor when calling util.system
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Fri, 24 Jun 2011 19:27:53 +0300 |
parents | 65f4512e40e4 |
children | 3ce9b1a7538b |
line wrap: on
line diff
--- a/hgext/transplant.py Fri Jun 24 17:04:37 2011 +0300 +++ b/hgext/transplant.py Fri Jun 24 19:27:53 2011 +0300 @@ -200,7 +200,8 @@ environ={'HGUSER': changelog[1], 'HGREVISION': revlog.hex(node), }, - onerr=util.Abort, errprefix=_('filter failed')) + onerr=util.Abort, errprefix=_('filter failed'), + out=self.ui.fout) user, date, msg = self.parselog(file(headerfile))[1:4] finally: os.unlink(headerfile)