diff --git a/ahserver/functionProcessor.py b/ahserver/functionProcessor.py index 7323e4e..5846462 100644 --- a/ahserver/functionProcessor.py +++ b/ahserver/functionProcessor.py @@ -44,7 +44,7 @@ class FunctionProcessor(BaseProcessor): return f(request, params_kw, *args, **self.run_ns) async def datahandle(self,request): - x = await self.path_call(request, self.path) + x = await self.path_call(request) if isinstance(x,web.FileResponse): self.retResponse = x elif isinstance(x,Response):