summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/project/access_and_security/security_groups/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/dashboards/project/access_and_security/security_groups/forms.py')
-rw-r--r--openstack_dashboard/dashboards/project/access_and_security/security_groups/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstack_dashboard/dashboards/project/access_and_security/security_groups/forms.py b/openstack_dashboard/dashboards/project/access_and_security/security_groups/forms.py
index 971d872f8..cd00ee9c2 100644
--- a/openstack_dashboard/dashboards/project/access_and_security/security_groups/forms.py
+++ b/openstack_dashboard/dashboards/project/access_and_security/security_groups/forms.py
@@ -60,7 +60,7 @@ class CreateGroup(forms.SelfHandlingForm):
_('Successfully created security group: %s')
% data['name'])
return sg
- except:
+ except Exception:
redirect = reverse("horizon:project:access_and_security:index")
exceptions.handle(request,
_('Unable to create security group.'),
@@ -346,7 +346,7 @@ class AddRule(forms.SelfHandlingForm):
messages.success(request,
_('Successfully added rule: %s') % unicode(rule))
return rule
- except:
+ except Exception:
redirect = reverse("horizon:project:access_and_security:"
"security_groups:detail", args=[data['id']])
exceptions.handle(request,