]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Replace missing space in error message
authorJohn Davidge <jodavidg@cisco.com>
Thu, 15 Jan 2015 17:45:47 +0000 (09:45 -0800)
committerJohn Davidge <jodavidg@cisco.com>
Thu, 15 Jan 2015 17:47:07 +0000 (09:47 -0800)
The error message on line 746 was missing a space before the
linebreak.

Change-Id: Ifd5b6ef5566adb52d6b5c1d1ee9280e63dac0463
Closes-bug: 1411347

neutron/db/l3_db.py

index 0ef0b89e5f6de3116df94ebfb1a2a67906772f70..fe30b21f5bbee7d496c086fdd66c9a7b6f752a14 100644 (file)
@@ -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: