[REVIEW] res_users in mail_thread: no Chatter-compatible anymore ! Some cleaning...
authorThibault Delavallée <tde@openerp.com>
Tue, 14 Aug 2012 15:20:53 +0000 (17:20 +0200)
committerThibault Delavallée <tde@openerp.com>
Tue, 14 Aug 2012 15:20:53 +0000 (17:20 +0200)
bzr revid: tde@openerp.com-20120814152053-edu3i87uzd8ev0u0

addons/mail/res_users.py

index 6a18560..30337c8 100644 (file)
@@ -35,7 +35,7 @@ class res_users(osv.osv):
         - add a welcome message
     """
     _name = 'res.users'
-    _inherit = ['res.users', 'mail.thread']
+    _inherit = ['res.users']
     _inherits = {'mail.alias': 'alias_id'}
     
     _columns = {
@@ -45,10 +45,10 @@ class res_users(osv.osv):
             ('none', 'Never')
             ], 'Receive Feeds by Email', required=True,
             help="Choose in which case you want to receive an email when you "\
-                  "receive new feeds."),
+                 "receive new feeds."),
         'alias_id': fields.many2one('mail.alias', 'Alias', ondelete="cascade", required=True, 
-                                    help="Email address internally associated with this user. Incoming emails will appear "
-                                         "in the user's notifications."),
+            help="Email address internally associated with this user. Incoming "\
+                 "emails will appear in the user's notifications."),
     }
     
     _defaults = {