From: Dan Wendlandt Date: Mon, 11 Feb 2013 00:28:05 +0000 (-0800) Subject: fix grammar in NetworkInUse exception X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=4538eebf44a16ce5da5367798a83ed5048e28831;p=openstack-build%2Fneutron-build.git fix grammar in NetworkInUse exception bug 1121555 Change-Id: Ie06ef45d066505b0ec1cd31e73c43ae6985afcde --- diff --git a/quantum/common/exceptions.py b/quantum/common/exceptions.py index cc91eeca5..9c041d66d 100644 --- a/quantum/common/exceptions.py +++ b/quantum/common/exceptions.py @@ -94,7 +94,7 @@ class InUse(QuantumException): class NetworkInUse(InUse): message = _("Unable to complete operation on network %(net_id)s. " - "There is one or more ports still in use on the network.") + "There are one or more ports still in use on the network.") class SubnetInUse(InUse):