From 4c77bfafd09ae7c243ebad9d5d9cb05196c17783 Mon Sep 17 00:00:00 2001 From: Dan Wendlandt Date: Sun, 10 Feb 2013 16:28:05 -0800 Subject: [PATCH] fix grammar in NetworkInUse exception bug 1121555 Change-Id: Ie06ef45d066505b0ec1cd31e73c43ae6985afcde --- quantum/common/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/common/exceptions.py b/quantum/common/exceptions.py index cc91eeca57..9c041d66db 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):