comparison 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
comparison
equal deleted inserted replaced
14739:a95efd378641 14740:d83ad13a280e
560 if command: 560 if command:
561 changesets = 1 561 changesets = 1
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:
569 transition = "good" 569 transition = "good"
570 # status < 0 means process was killed 570 # status < 0 means process was killed