Mercurial > public > mercurial-scm > hg-stable
diff mercurial/filemerge.py @ 14749:e3be7dc9a5e1 stable
filemerge: use ui out descriptor when calling util.system
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Fri, 24 Jun 2011 17:04:37 +0300 |
parents | 4030630fb59c |
children | 157d93c41c10 |
line wrap: on
line diff
--- a/mercurial/filemerge.py Fri Jun 24 12:16:14 2011 +0300 +++ b/mercurial/filemerge.py Fri Jun 24 17:04:37 2011 +0300 @@ -233,7 +233,8 @@ replace = dict(local=a, base=b, other=c, output=out) args = util.interpolate(r'\$', replace, args, lambda s: '"%s"' % util.localpath(s)) - r = util.system(toolpath + ' ' + args, cwd=repo.root, environ=env) + r = util.system(toolpath + ' ' + args, cwd=repo.root, environ=env, + out=ui.fout) if not r and (_toolbool(ui, tool, "checkconflicts") or 'conflicts' in _toollist(ui, tool, "check")):