From 2db0fe5a757c79982d5be4c15ce850f24d603baa Mon Sep 17 00:00:00 2001 From: juke Date: Fri, 4 Feb 2011 19:53:38 +0100 Subject: [PATCH] fix Bug #471 IS_HTML Flag --- weboob/backends/minutes20/backend.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/weboob/backends/minutes20/backend.py b/weboob/backends/minutes20/backend.py index ced4bf0e..0fc6ae67 100644 --- a/weboob/backends/minutes20/backend.py +++ b/weboob/backends/minutes20/backend.py @@ -53,13 +53,14 @@ class Newspaper20minutesBackend(BaseBackend, ICapMessages): if not thread: thread = Thread(id) + flags = Message.IS_HTML thread.title = content.title if not thread.date: thread.date = content.date #thread.root = Message(thread=thread, id=0, title=content.title, sender=content.author, receivers=None, date=thread.date, parent=None, content=content.body, signature=None, children = [], flags=flags) - thread.root = Message(thread=thread, id=0, title=content.title, sender=content.author, receivers=None, date=thread.date, parent=None, content=content.body) + thread.root = Message(thread=thread, id=0, title=content.title, sender=content.author, receivers=None, date=thread.date, parent=None, content=content.body, flags=flags) return thread