[REM] Removed print statement
authorThibault Delavallée <tde@openerp.com>
Wed, 23 Apr 2014 15:30:08 +0000 (17:30 +0200)
committerThibault Delavallée <tde@openerp.com>
Wed, 23 Apr 2014 15:30:08 +0000 (17:30 +0200)
bzr revid: tde@openerp.com-20140423153008-jngdjm0qx7cgqctu

addons/email_template/wizard/mail_compose_message.py

index f2dbfc1..18b8f09 100644 (file)
@@ -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: