]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Remove unnecessary brackets
authorGary Kotton <gkotton@vmware.com>
Mon, 25 May 2015 04:19:51 +0000 (21:19 -0700)
committerGary Kotton <gkotton@vmware.com>
Mon, 25 May 2015 04:19:51 +0000 (21:19 -0700)
TrivialFix

Change-Id: I9bd552110785c09b3eaa8762a8141446e51ea02a

neutron/ipam/exceptions.py

index 4400e557e3c11989320bebf9c4b1c1f1d5f48173..8170f2ac2b87b4a428ee541727696c5e885a1ff8 100644 (file)
@@ -53,9 +53,9 @@ class InvalidSubnetRequest(exceptions.BadRequest):
 
 
 class AllocationOnAutoAddressSubnet(exceptions.NeutronException):
-    message = (_("IPv6 address %(ip)s cannot be directly "
-                 "assigned to a port on subnet %(subnet_id)s as the "
-                 "subnet is configured for automatic addresses"))
+    message = _("IPv6 address %(ip)s cannot be directly "
+                "assigned to a port on subnet %(subnet_id)s as the "
+                "subnet is configured for automatic addresses")
 
 
 class IpAddressGenerationFailure(exceptions.Conflict):