[FIX] Specify the name of the argument for the context, to avoir a critical bug

bzr revid: stephane@openerp.com-20091009114816-5n518p74cm1k2pj1
This commit is contained in:
Stephane Wirtel 2009-10-09 13:48:16 +02:00
parent ff1ea200a2
commit 3d08c9c6f0
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ from report import report_sxw
class ir_module_reference_print(report_sxw.rml_parse):
def __init__(self, cr, uid, name, context):
super(ir_module_reference_print, self).__init__(cr, uid, name, context)
super(ir_module_reference_print, self).__init__(cr, uid, name, context=context)
self.localcontext.update({
'time': time,
'findobj': self._object_find,