Skip to content

Commit

Permalink
s/No next stages/Finished all stages/
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Grudko committed Nov 16, 2012
1 parent ca92355 commit b2894c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions n3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def pexpect_filter(self, line):

def apply_stage(self, action):
if self.next_stage == len(self.stages):
log.error("No next stages")
log.error("Finished all stages")
self.cur_status = None
return False
else:
Expand Down Expand Up @@ -206,7 +206,7 @@ def do_retry(self, line):
""" Apply current stage again """
if self.cur_stage is not None:
self.next_stage = self.cur_stage
self.do_do(line)
self.do_do('')

def do_undo(self, line):
""" Apply current stage rollback """
Expand Down

0 comments on commit b2894c9

Please sign in to comment.