Fix dumb error message typo

Change-Id: I7f77532dd13f8200d8b2ccfc6bbe740a31f996a9
This commit is contained in:
Adam Harwell 2017-04-15 04:26:22 +09:00
parent 75ebfd7137
commit 5f6ffc4b14
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ class BaseNeutronDriver(base.AbstractNetworkDriver):
resource_type)(resource)
except neutron_client_exceptions.NotFound:
message = _('{resource_type} not found '
'({resource_type} id: {resource_id}.').format(
'({resource_type} id: {resource_id}).').format(
resource_type=resource_type, resource_id=resource_id)
raise getattr(base, '%sNotFound' %
resource_type.capitalize())(message)