diff --git a/mail_notify_bounce/__manifest__.py b/mail_notify_bounce/__manifest__.py
index 93644afe..96e03cb4 100644
--- a/mail_notify_bounce/__manifest__.py
+++ b/mail_notify_bounce/__manifest__.py
@@ -5,7 +5,7 @@
{
"name": "Notify bounce emails",
"summary": "Notify bounce emails to preconfigured addresses",
- "version": "10.0.1.0.0",
+ "version": "10.0.1.0.1",
"category": "Mail",
"website": "https://github.com/OCA/social",
"author": "Agile Business Group, Odoo Community Association (OCA)",
diff --git a/mail_notify_bounce/models/mail_thread.py b/mail_notify_bounce/models/mail_thread.py
index 8700c079..667bfaf1 100644
--- a/mail_notify_bounce/models/mail_thread.py
+++ b/mail_notify_bounce/models/mail_thread.py
@@ -59,7 +59,7 @@ class MailThread(models.AbstractModel):
'body_html': (
u"%s
%s
%s"
% (
- unicode(message_dict['body'], errors='replace'),
+ message_dict['body'],
_("Raw message:"),
unicode(message.__str__(), errors='replace').replace(
"\n", "
")