mercurial/filemerge.py
changeset 23270 41c03b7592ed
parent 23148 b405dd6c90bf
child 24099 be83fd9d46d5
--- a/mercurial/filemerge.py	Sat Nov 08 12:57:42 2014 +0900
+++ b/mercurial/filemerge.py	Sat Nov 08 13:06:22 2014 +0900
@@ -301,8 +301,7 @@
         replace = {'local': a, 'base': b, 'other': c, 'output': out}
         args = util.interpolate(r'\$', replace, args,
                                 lambda s: util.shellquote(util.localpath(s)))
-        r = util.system(toolpath + ' ' + args, cwd=repo.root, environ=env,
-                        out=ui.fout)
+        r = ui.system(toolpath + ' ' + args, cwd=repo.root, environ=env)
         return True, r
     return False, 0