changeset 14739:a95efd378641 stable

extdiff: use ui out descriptor when calling util.system
author Idan Kamara <idankk86@gmail.com>
date Fri, 24 Jun 2011 17:04:37 +0300
parents bcc1a9fd0b8c
children d83ad13a280e
files hgext/extdiff.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/extdiff.py	Fri Jun 24 17:04:37 2011 +0300
+++ b/hgext/extdiff.py	Fri Jun 24 17:04:37 2011 +0300
@@ -222,7 +222,7 @@
         cmdline = util.shellquote(diffcmd) + ' ' + args
 
         ui.debug('running %r in %s\n' % (cmdline, tmproot))
-        util.system(cmdline, cwd=tmproot)
+        util.system(cmdline, cwd=tmproot, out=ui.fout)
 
         for copy_fn, working_fn, mtime in fns_and_mtime:
             if os.lstat(copy_fn).st_mtime != mtime: