From: John Davidge Date: Thu, 15 Jan 2015 17:45:47 +0000 (-0800) Subject: Replace missing space in error message X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=50668d94afd26089c25dbbf2b290c9fc313f2eee;p=openstack-build%2Fneutron-build.git Replace missing space in error message The error message on line 746 was missing a space before the linebreak. Change-Id: Ifd5b6ef5566adb52d6b5c1d1ee9280e63dac0463 Closes-bug: 1411347 --- diff --git a/neutron/db/l3_db.py b/neutron/db/l3_db.py index 0ef0b89e5..fe30b21f5 100644 --- a/neutron/db/l3_db.py +++ b/neutron/db/l3_db.py @@ -743,7 +743,7 @@ class L3_NAT_dbonly_mixin(l3.RouterPluginBase): else: ips = [ip['ip_address'] for ip in internal_port['fixed_ips']] if not ips: - msg = (_('Cannot add floating IP to port %s that has' + msg = (_('Cannot add floating IP to port %s that has ' 'no fixed IP addresses') % internal_port['id']) raise n_exc.BadRequest(resource='floatingip', msg=msg) if len(ips) > 1: