From 844ae433c17ee3956a8c83ed693ca44c8e3c38de Mon Sep 17 00:00:00 2001 From: Fawad Khaliq Date: Wed, 5 Feb 2014 10:15:13 -0800 Subject: [PATCH] Fix error message typo * Fix error message typo in "_network_admin_state" function where "Network Admin State Validation Falied" should be changed to "Network Admin State Validation Failed" Change-Id: I767e93c300250b4422e3980f799862ceb976c951 Closes-Bug: #1276409 Signed-off-by: Fawad Khaliq --- neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py b/neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py index 49fa64203..fb389c434 100644 --- a/neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py +++ b/neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py @@ -562,7 +562,7 @@ class NeutronPluginPLUMgridV2(db_base_plugin_v2.NeutronDbPluginV2, "supported yet by this plugin. Ignoring " "setting for network %s"), network_name) except Exception: - err_message = _("Network Admin State Validation Falied: ") + err_message = _("Network Admin State Validation Failed: ") raise plum_excep.PLUMgridException(err_msg=err_message) return network -- 2.45.2