From 514245d63fe902e4548829b9bb66fa60c86509f1 Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Sun, 24 May 2015 21:19:51 -0700 Subject: [PATCH] Remove unnecessary brackets TrivialFix Change-Id: I9bd552110785c09b3eaa8762a8141446e51ea02a --- neutron/ipam/exceptions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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): -- 2.45.2