From 3af2f930d308c6d0af322667744d00e2d03e8fde Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Thu, 17 Jul 2008 21:30:45 +0000 Subject: [PATCH] bug fixs --- qaapi/qa/Step.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qaapi/qa/Step.py b/qaapi/qa/Step.py index 6974c2a..928da6f 100644 --- a/qaapi/qa/Step.py +++ b/qaapi/qa/Step.py @@ -40,7 +40,7 @@ class Step(dict): self.status = "Failed" utils.header("%s" % traceback.format_exc()) if not self.fatal: - for step in self.next_step: + for step in self.next_steps: step.run() return None -- 2.47.0