Skip to content
Snippets Groups Projects
Commit 6061ccda authored by Denis Ledoux's avatar Denis Ledoux
Browse files

[FIX] mail: batch_size expects an integer

parent bbd20dbb
Branches
Tags
No related merge requests found
......@@ -221,7 +221,7 @@ class mail_compose_message(osv.TransientModel):
else:
res_ids = [wizard.res_id]
batch_size = self.pool['ir.config_parameter'].get_param(cr, SUPERUSER_ID, 'mail.batch_size') or self._batch_size
batch_size = int(self.pool['ir.config_parameter'].get_param(cr, SUPERUSER_ID, 'mail.batch_size')) or self._batch_size
sliced_res_ids = [res_ids[i:i + batch_size] for i in range(0, len(res_ids), batch_size)]
for res_ids in sliced_res_ids:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment