From: Gary Kotton Date: Wed, 2 Jan 2013 15:31:25 +0000 (+0000) Subject: Ensure that exception prints correct text. X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=2d8bd42c1e9570f5fa7c3cfaa0c4bc613d7748c3;p=openstack-build%2Fneutron-build.git Ensure that exception prints correct text. Fixes bug 1095333 Change-Id: I5077108de8dacaab4bcf0d7236123f960676d591 --- diff --git a/quantum/extensions/l3.py b/quantum/extensions/l3.py index 63f03862c..d0eba5152 100644 --- a/quantum/extensions/l3.py +++ b/quantum/extensions/l3.py @@ -81,8 +81,8 @@ class ExternalNetworkInUse(qexception.InUse): class RouterExternalGatewayInUseByFloatingIp(qexception.InUse): - message = _("Gateway cannot be updated for router %(router_id), since a " - "gateway to external network %(net_id) is required by one or " + message = _("Gateway cannot be updated for router %(router_id)s, since a " + "gateway to external network %(net_id)s is required by one or " "more floating IPs.")