yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #46439
[Bug 1546832] [NEW] Typo error of wrong msg format in _registry_notify of SecurityGroupDbMixin
Public bug reported:
args are not parsed decently.
original
reason = _('cannot perform %(event)s due to %(reason)s'), {
'event': event, 'reason': e}
should be
reason = _('cannot perform %(event)s due to %(reason)s') % {
'event': event, 'reason': e}
** Affects: neutron
Importance: Undecided
Assignee: yalei wang (yalei-wang)
Status: In Progress
** Changed in: neutron
Assignee: (unassigned) => yalei wang (yalei-wang)
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to neutron.
https://bugs.launchpad.net/bugs/1546832
Title:
Typo error of wrong msg format in _registry_notify of
SecurityGroupDbMixin
Status in neutron:
In Progress
Bug description:
args are not parsed decently.
original
reason = _('cannot perform %(event)s due to %(reason)s'), {
'event': event, 'reason': e}
should be
reason = _('cannot perform %(event)s due to %(reason)s') % {
'event': event, 'reason': e}
To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1546832/+subscriptions
Follow ups