Commit 92786b97 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Fix mime type on mail body.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@1251 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 724a9948
......@@ -284,7 +284,7 @@ class NeoTestRunner(unittest.TestResult):
msg['X-ERP5-Tests-Status'] = 'OK'
# write the body
body = MIMEText(self.summary + self.warnings + self.errors, 'text')
body = MIMEText(self.summary + self.warnings + self.errors)
msg.attach(body)
# attach the log file
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment