From 50668d94afd26089c25dbbf2b290c9fc313f2eee Mon Sep 17 00:00:00 2001 From: John Davidge Date: Thu, 15 Jan 2015 09:45:47 -0800 Subject: [PATCH] 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 --- neutron/db/l3_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.45.2