##// END OF EJS Templates
bisect: use ui out descriptor when calling util.system
Idan Kamara -
r14740:d83ad13a stable
parent child Browse files
Show More
@@ -562,7 +562,7 b' def bisect(ui, repo, rev=None, extra=Non'
562 try:
562 try:
563 while changesets:
563 while changesets:
564 # update state
564 # update state
565 status = util.system(command)
565 status = util.system(command, out=ui.fout)
566 if status == 125:
566 if status == 125:
567 transition = "skip"
567 transition = "skip"
568 elif status == 0:
568 elif status == 0:
General Comments 0
You need to be logged in to leave comments. Login now