← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1411347] [NEW] Missing space in error message in neutron/db/l3_db.py

 

Public bug reported:

Error message on line 746 is missing a space between lines:

msg = (_('Cannot add floating IP to port %s that has'
         'no fixed IP addresses') % internal_port['id'])

Should be:

msg = (_('Cannot add floating IP to port %s that has '
         'no fixed IP addresses') % internal_port['id'])

** Affects: horizon
     Importance: Undecided
     Assignee: John Davidge (john-davidge)
         Status: New

** Changed in: horizon
     Assignee: (unassigned) => John Davidge (john-davidge)

** Description changed:

  Error message on line 746 is missing a space between lines:
  
  msg = (_('Cannot add floating IP to port %s that has'
-                 'no fixed IP addresses') % internal_port['id'])
+          'no fixed IP addresses') % internal_port['id'])
  
  Should be:
  
  msg = (_('Cannot add floating IP to port %s that has '
-                 'no fixed IP addresses') % internal_port['id'])
+          'no fixed IP addresses') % internal_port['id'])

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1411347

Title:
  Missing space in error message in neutron/db/l3_db.py

Status in OpenStack Dashboard (Horizon):
  New

Bug description:
  Error message on line 746 is missing a space between lines:

  msg = (_('Cannot add floating IP to port %s that has'
           'no fixed IP addresses') % internal_port['id'])

  Should be:

  msg = (_('Cannot add floating IP to port %s that has '
           'no fixed IP addresses') % internal_port['id'])

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1411347/+subscriptions


Follow ups

References