From a54caabbcb10a7db02f872ef5097ac379db5445f Mon Sep 17 00:00:00 2001 From: Raphael Collet <rco@openerp.com> Date: Tue, 3 Jun 2014 17:29:49 +0200 Subject: [PATCH] [FIX] website_mail: model 'mail.thread' must be abstract --- addons/website_mail/models/mail_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/website_mail/models/mail_thread.py b/addons/website_mail/models/mail_thread.py index d7f750872ca6..d4a37924b798 100644 --- a/addons/website_mail/models/mail_thread.py +++ b/addons/website_mail/models/mail_thread.py @@ -22,7 +22,7 @@ from openerp.osv import osv, fields # TODO for trunk, remove me -class MailThread(osv.Model): +class MailThread(osv.AbstractModel): _inherit = 'mail.thread' _columns = { -- GitLab