[FIX] fixde Report __init__

bzr revid: jth@openerp.com-20100305110128-3an8qr456xuk3le8
This commit is contained in:
Julien Thewys 2010-03-05 12:01:28 +01:00
parent 1c95731eae
commit 0421c587f1
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class Report(YamlTag):
self.model = model
self.name = name
self.string = string
super(Function, self).__init__(**kwargs)
super(Report, self).__init__(**kwargs)
class Delete(YamlTag):
def __init__(self, model, id, search, **kwargs):