Fix dispatching of reports after API change.

bzr revid: p_christ@hol.gr-20090830145331-29ffrhf228defnl2
This commit is contained in:
P. Christeas 2009-08-30 17:53:31 +03:00
parent 4abaf2763e
commit 483e133ee8
1 changed files with 1 additions and 1 deletions

View File

@ -623,7 +623,7 @@ class wizard(netsvc.ExportService):
raise KeyError("Method not supported %s" % method)
security.check(db,uid,passwd)
fn = getattr(self, 'exp_'+method)
res = fn(ls, db, uid, *params)
res = fn(db, uid, *params)
return res
def new_dispatch(self,method,auth,params):