[FIX] ids -> id.

bzr revid: tde@openerp.com-20120815205459-irdfe1aeosqnu3nm
This commit is contained in:
Thibault Delavallée 2012-08-15 22:54:59 +02:00
parent 92c70aa6ea
commit b046ac3fae
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ class mail_thread(osv.Model):
for id in ids:
# copy origin al vals because we are going to modify it
specific_vals = dict(vals)
followers_command = self.message_get_automatic_followers(cr, uid, ids, specific_vals, context=context)
followers_command = self.message_get_automatic_followers(cr, uid, id, specific_vals, context=context)
if specific_vals.get('message_follower_ids'):
specific_vals['message_follower_ids'] += followers_command
else: