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
This commit is contained in:
John Davidge 2015-01-15 09:45:47 -08:00
parent a961a28625
commit 50668d94af
1 changed files with 1 additions and 1 deletions

View 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: