bisect: use ui out descriptor when calling util.system stable
authorIdan Kamara <idankk86@gmail.com>
Fri, 24 Jun 2011 17:04:37 +0300
branchstable
changeset 14740 d83ad13a280e
parent 14739 a95efd378641
child 14741 39235b398248
bisect: use ui out descriptor when calling util.system
mercurial/commands.py
--- 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: