From: ivan-zhu Date: Fri, 28 Sep 2012 14:36:23 +0000 (+0800) Subject: Correct the error message in the Class NoNetworkAvailable X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=a385229da8c16586674162e606f159fb9f32c11d;p=openstack-build%2Fneutron-build.git Correct the error message in the Class NoNetworkAvailable Bug #1052294 Change "No virtual network is available." to "No tenant network is available for allocation." Change-Id: I8e2b40df1afa46522666d51218b82a4deef2ff64 --- diff --git a/quantum/common/exceptions.py b/quantum/common/exceptions.py index c99c25403..365687bad 100644 --- a/quantum/common/exceptions.py +++ b/quantum/common/exceptions.py @@ -147,7 +147,7 @@ class ResourceExhausted(QuantumException): class NoNetworkAvailable(ResourceExhausted): message = _("Unable to create the network. " - "No virtual network is available.") + "No tenant network is available for allocation.") class AlreadyAttached(QuantumException):