From 195f0ecb593ebf34fb5c3dcbf554df6c38a68e93 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 14 Aug 2025 14:20:06 +0800 Subject: [PATCH] bugfix --- uapi/appapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uapi/appapi.py b/uapi/appapi.py index efd3ee8..d1ae868 100644 --- a/uapi/appapi.py +++ b/uapi/appapi.py @@ -193,7 +193,7 @@ where a.id = b.upappid and b.ownerid = ${ownerid}$""" recs = await sor.sqlExe(sql, {'appid':upappid, 'ownerid': callerid}) if len(recs) < 1: - e = Exception(f'{appid=}, {callerid=} has not apikey') + e = Exception(f'{upappid=}, {callerid=} has not apikey') exception(f'{e}, {format_exc()}') raise e r = recs[0]