[PATCH 4 of 5] bisect: use ui out descriptor when calling util.system

Idan Kamara idankk86 at gmail.com
Fri Jun 24 11:32:09 CDT 2011


# HG changeset patch
# User Idan Kamara <idankk86 at gmail.com>
# Date 1308924277 -10800
# Branch stable
# Node ID f1e7fcb40ec0df027fd194482503a744b421e30a
# Parent  b520494ed49cdd89a71332a4f6150d1b49578779
bisect: use ui out descriptor when calling util.system

diff -r b520494ed49c -r f1e7fcb40ec0 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:


More information about the Mercurial-devel mailing list