equal
deleted
inserted
replaced
329 commandpath = util.find_exe(command) |
329 commandpath = util.find_exe(command) |
330 changesets = 1 |
330 changesets = 1 |
331 try: |
331 try: |
332 while changesets: |
332 while changesets: |
333 # update state |
333 # update state |
334 status = os.spawnl(os.P_WAIT, commandpath) |
334 status = os.spawnl(os.P_WAIT, commandpath, commandpath) |
335 if status == 125: |
335 if status == 125: |
336 transition = "skip" |
336 transition = "skip" |
337 elif status == 0: |
337 elif status == 0: |
338 transition = "good" |
338 transition = "good" |
339 # status < 0 means process was killed |
339 # status < 0 means process was killed |