From 477baee868a990ae5b4733c08668f382aa156481 Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Thu, 21 Jun 2012 14:36:19 +1000 Subject: [PATCH] Fix a typo (from the commit to use state instead of parsed_template) Change-Id: I37800ad3fb50210b8f27ca889fcfa48e14da8af0 Signed-off-by: Angus Salkeld --- heat/engine/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/engine/manager.py b/heat/engine/manager.py index 06e39787..be8b6465 100644 --- a/heat/engine/manager.py +++ b/heat/engine/manager.py @@ -189,7 +189,7 @@ class EngineManager(manager.Manager): mem['StackStatusReason'] = s.status_reason # only show the outputs on a completely created stack - if s.state == ps.CREATE_COMPLETE: + if s.status == ps.CREATE_COMPLETE: mem['Outputs'] = ps.get_outputs() res['stacks'].append(mem) -- 2.45.2