##// END OF EJS Templates
extdiff: use ui out descriptor when calling util.system
Idan Kamara -
r14739:a95efd37 stable
parent child Browse files
Show More
@@ -222,7 +222,7 b' def dodiff(ui, repo, diffcmd, diffopts, '
222 cmdline = util.shellquote(diffcmd) + ' ' + args
222 cmdline = util.shellquote(diffcmd) + ' ' + args
223
223
224 ui.debug('running %r in %s\n' % (cmdline, tmproot))
224 ui.debug('running %r in %s\n' % (cmdline, tmproot))
225 util.system(cmdline, cwd=tmproot)
225 util.system(cmdline, cwd=tmproot, out=ui.fout)
226
226
227 for copy_fn, working_fn, mtime in fns_and_mtime:
227 for copy_fn, working_fn, mtime in fns_and_mtime:
228 if os.lstat(copy_fn).st_mtime != mtime:
228 if os.lstat(copy_fn).st_mtime != mtime:
General Comments 0
You need to be logged in to leave comments. Login now