← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 791895] Re: project_scrum user email address

 

** Branch linked: lp:~openerp-dev/openobject-addons/trunk-bug-791895-jam

-- 
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):
  In Progress

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


References