From d18358386c3509949f000e244b464811b114693d Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 18 Dec 2025 16:25:03 +0800 Subject: [PATCH] bugfix --- ahserver/auth_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ahserver/auth_api.py b/ahserver/auth_api.py index 351e568..4c0664c 100644 --- a/ahserver/auth_api.py +++ b/ahserver/auth_api.py @@ -144,7 +144,7 @@ class AuthAPI: @web.middleware async def checkAuth(self,request, handler): - info(f'checkAuth() called ... {request.path=}, {request.method}, {type(handler}') + info(f'checkAuth() called ... {request.path=}, {request.method}, {type(handler)}') t1 = time.time() path = request.path userinfo = await get_session_userinfo(request)