From 060dd7a883f13b582f0c2fa43403bac8d2bb1239 Mon Sep 17 00:00:00 2001 From: ymq1 Date: Fri, 13 Jun 2025 07:26:42 +0000 Subject: [PATCH] bugfix --- ahserver/functionProcessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):