Skip to content
Snippets Groups Projects
Commit 0ae0b643 authored by Thibault Delavallée's avatar Thibault Delavallée
Browse files

[REM] Removed print statement

bzr revid: tde@openerp.com-20140423153008-jngdjm0qx7cgqctu
parent 549da11e
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,6 @@ class mail_compose_message(osv.TransientModel):
fields = ['subject', 'body_html', 'email_from', 'email_to', 'partner_to', 'email_cc', 'reply_to']
template = self.pool['email.template'].browse(cr, uid, template_id, context=context)
values = dict((field, getattr(template, field)) for field in fields if getattr(template, field))
print values, template.user_signature
if template.attachment_ids:
values['attachment_ids'] = [att.id for att in template.attachment_ids]
if template.mail_server_id:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment