[FIX] tools: mail: fixed last commit, solving an issue with the html2plaintext introd...
authorThibault Delavallée <tde@openerp.com>
Fri, 11 Jul 2014 13:31:44 +0000 (15:31 +0200)
committerThibault Delavallée <tde@openerp.com>
Fri, 11 Jul 2014 14:21:01 +0000 (16:21 +0200)
openerp/tools/mail.py

index 7e2c798..425a7ff 100644 (file)
@@ -215,7 +215,8 @@ def html2plaintext(html, body_id=None, encoding='utf-8'):
     html = html.replace('&lt;', '<')
 
     # strip all lines
-    html = ''.join([x.strip() for x in html.splitlines(True)])
+    html = '\n'.join([x.strip() for x in html.splitlines()])
+    html = html.replace('\n' * 2, '\n')
 
     for i, url in enumerate(url_index):
         if i == 0: