[FIX] note: do not set self in args of a super call

This silly mistake prevents to group notes by
something else than stages.

opw-633980
This commit is contained in:
Denis Ledoux 2015-04-28 11:15:39 +02:00
parent 3c055a769f
commit 39325842e4
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ class note_note(osv.osv):
return result
else:
return super(note_note, self).read_group(self, cr, uid, domain, fields, groupby,
return super(note_note, self).read_group(cr, uid, domain, fields, groupby,
offset=offset, limit=limit, context=context, orderby=orderby)