From 226e5c6891dbb63ccbf1735a7f4c70447ac9ba7f Mon Sep 17 00:00:00 2001 From: BryantHe Date: Sat, 12 Aug 2023 20:48:40 +0800 Subject: [PATCH] feat: add api of body record 9 --- app/api/v1/exception/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/v1/exception/auth.py b/app/api/v1/exception/auth.py index 4751434..48688b6 100644 --- a/app/api/v1/exception/auth.py +++ b/app/api/v1/exception/auth.py @@ -3,7 +3,7 @@ from apiflask import HTTPError class AuthError(HTTPError): status_code = 403 - message = '请登陆' + message = '请登录' class WechatLoginError(HTTPError):