[FIX] mail: fix IndentationError introduced in last commit

bzr revid: chs@openerp.com-20140220172926-4fy9x1i1q4wknfqx
This commit is contained in:
Christophe Simonis 2014-02-20 18:29:26 +01:00
parent 170f3ef1f9
commit 4769ff5e5d
1 changed files with 1 additions and 1 deletions

View File

@ -1583,7 +1583,7 @@ class mail_thread(osv.AbstractModel):
if context.get('operation', '') == 'create':
self.check_access_rule(cr, uid, ids, 'create')
else:
self.check_access_rule(cr, uid, ids, 'read')
self.check_access_rule(cr, uid, ids, 'read')
except (osv.except_osv, orm.except_orm):
return False
else: