From: Angus Salkeld Date: Thu, 21 Jun 2012 04:36:19 +0000 (+1000) Subject: Fix a typo (from the commit to use state instead of parsed_template) X-Git-Tag: 2014.1~1693 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=477baee868a990ae5b4733c08668f382aa156481;p=openstack-build%2Fheat-build.git Fix a typo (from the commit to use state instead of parsed_template) Change-Id: I37800ad3fb50210b8f27ca889fcfa48e14da8af0 Signed-off-by: Angus Salkeld --- 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)