From: Gary Kotton Date: Mon, 25 May 2015 04:19:51 +0000 (-0700) Subject: Remove unnecessary brackets X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=514245d63fe902e4548829b9bb66fa60c86509f1;p=openstack-build%2Fneutron-build.git Remove unnecessary brackets TrivialFix Change-Id: I9bd552110785c09b3eaa8762a8141446e51ea02a --- diff --git a/neutron/ipam/exceptions.py b/neutron/ipam/exceptions.py index 4400e557e..8170f2ac2 100644 --- a/neutron/ipam/exceptions.py +++ b/neutron/ipam/exceptions.py @@ -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):