Fix a typo (from the commit to use state instead of parsed_template)

Change-Id: I37800ad3fb50210b8f27ca889fcfa48e14da8af0
Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
This commit is contained in:
Angus Salkeld 2012-06-21 14:36:19 +10:00
parent c20b33dd14
commit 477baee868
1 changed files with 1 additions and 1 deletions

View File

@ -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)