yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #28029
[Bug 1418643] [NEW] References to im_class.__name__ are not compatible with python3
Public bug reported:
References to im_class.__name__ will need to be changed to
__self__.__class__.__name__.
For example, in notifications.py references to
callback.im_class.__name__ should be
callback.__self__.__class__.__name__.
** Affects: keystone
Importance: Undecided
Status: New
** Tags: python3
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to Keystone.
https://bugs.launchpad.net/bugs/1418643
Title:
References to im_class.__name__ are not compatible with python3
Status in OpenStack Identity (Keystone):
New
Bug description:
References to im_class.__name__ will need to be changed to
__self__.__class__.__name__.
For example, in notifications.py references to
callback.im_class.__name__ should be
callback.__self__.__class__.__name__.
To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/1418643/+subscriptions
Follow ups
References