]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Remove 'IP' from device exception message
authorBrian Haley <brian.haley@hp.com>
Tue, 28 Apr 2015 20:07:47 +0000 (16:07 -0400)
committerBrian Haley <brian.haley@hp.com>
Tue, 28 Apr 2015 20:07:47 +0000 (16:07 -0400)
Message should match others of this type elsewhere, and isn't
IP-specific.  Cleanup from https://review.openstack.org/#/c/168806/

Change-Id: I4cd3eb86e078f069b871b3cd08b66024682f92a6

neutron/common/exceptions.py

index e5212ab4ebd4d22758c3a19519a58da56245bc15..227cf0821509ef060018e67ca7dc1e49f3321b72 100644 (file)
@@ -456,4 +456,4 @@ class SubnetPoolQuotaExceeded(OverQuota):
 
 
 class DeviceNotFoundError(NeutronException):
-    message = _("IP Device '%(device_name)s' does not exist")
+    message = _("Device '%(device_name)s' does not exist")