diff mercurial/commands.py @ 14740:d83ad13a280e stable

bisect: use ui out descriptor when calling util.system
author Idan Kamara <idankk86@gmail.com>
date Fri, 24 Jun 2011 17:04:37 +0300
parents 94eea58da2a3
children 271424fdbeec
line wrap: on
line diff
--- a/mercurial/commands.py	Fri Jun 24 17:04:37 2011 +0300
+++ b/mercurial/commands.py	Fri Jun 24 17:04:37 2011 +0300
@@ -562,7 +562,7 @@
         try:
             while changesets:
                 # update state
-                status = util.system(command)
+                status = util.system(command, out=ui.fout)
                 if status == 125:
                     transition = "skip"
                 elif status == 0: