summaryrefslogtreecommitdiff
path: root/tuskar_ui/infrastructure/overview/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'tuskar_ui/infrastructure/overview/forms.py')
-rw-r--r--tuskar_ui/infrastructure/overview/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tuskar_ui/infrastructure/overview/forms.py b/tuskar_ui/infrastructure/overview/forms.py
index 2b5f9006..965814ad 100644
--- a/tuskar_ui/infrastructure/overview/forms.py
+++ b/tuskar_ui/infrastructure/overview/forms.py
@@ -299,7 +299,7 @@ class DeployOvercloud(horizon.forms.SelfHandlingForm):
# Validate plan and create stack
for message in validate_plan(request, plan):
- if message['is_critical']:
+ if message.get('is_critical'):
horizon.messages.success(request, message.text)
return False
try: