[FIX]portal: remove unused parameter

bzr revid: kjo@tinyerp.com-20111103065144-ii6ahohdkg877usj
This commit is contained in:
Kuldeep Joshi (OpenERP) 2011-11-03 12:21:44 +05:30
parent 662bf81627
commit b672eee67c
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class wizard(osv.osv_memory):
email_to = dest_user.user_email
subject = _(WELCOME_EMAIL_SUBJECT) % data
body = _(WELCOME_EMAIL_BODY) % data
res = mail_message_obj.schedule_with_attach(cr, uid, email_from , [email_to], subject, body, model=context.get('active_model'), res_id=u.partner_id.id, context=context)
res = mail_message_obj.schedule_with_attach(cr, uid, email_from , [email_to], subject, body, context=context)
if not res:
logging.getLogger('res.portal.wizard').warning(
'Failed to send email from %s to %s', email_from, email_to)