** Changed in: openobject-addons
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/791895
Title:
project_scrum user email address
Status in OpenERP Modules (addons):
Fix Released
Bug description:
I'm using v6.0.2
In project_scrum/project_scrum.py line 323 you have:
user_email = email_from or user.address_id.email or email_from
user.address_id.email is not the proper way to access the email
address of the user. There is a function for that:
user.user_email
please use that one.
Also, as you can see email_from is used twice in that line which is
wrong. Probably the best would be to change that line to:
user_email = email_from or user.user_email
Thanks
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/791895/+subscriptions
_______________________________________________
Mailing list: https://launchpad.net/~c2c-oerpscenario
Post to : [email protected]
Unsubscribe : https://launchpad.net/~c2c-oerpscenario
More help : https://help.launchpad.net/ListHelp