Fix spaces in Firewall's error messages

TrivialFix

Change-Id: Ia6762fa748998725314167b94d621db954a8d80d
This commit is contained in:
Reedip 2017-07-23 15:09:50 +05:30
parent 90d202989c
commit 108b74b355
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class FirewallRuleSharingConflict(exceptions.NotFound):
"""
message = _("Operation cannot be performed since firewall policy "
"%(firewall_policy_id)s could not find the firewall rule "
"%(firewall_rule_id)s. Please confirm if the firewall rule"
"%(firewall_rule_id)s. Please confirm if the firewall rule "
"exists and is shared.")
@ -156,7 +156,7 @@ class FirewallRuleAlreadyAssociated(exceptions.Conflict):
the rule is already associated with.
"""
message = _("Operation cannot be performed since firewall rule "
"%(firewall_rule_id)s is already associated with firewall"
"%(firewall_rule_id)s is already associated with firewall "
"policy %(firewall_policy_id)s.")