Comment #3 on issue 21 by cesar.alaniz: object has no attribute 'get_name'
http://code.google.com/p/django-mailer/issues/detail?id=21
Actually it has not been fixed in 0.7. In my python 2.6.1 my
threading.current_thread was bound to threading.currentThread so the
try...except
statement executed with out throwing the AttributeError. I simply changed
this to
try:
threading.Thread.get_name
except AttributeError:
threading.Thread.get_name = threading.Thread.getName
Attachments:
lockfile.diff 136 bytes
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---