From b392345fa9aa9504010ee058123827d1454d6e21 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 1 Sep 2025 14:41:35 +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 6fad5f0..afccb68 100644 --- a/uapi/appapi.py +++ b/uapi/appapi.py @@ -71,7 +71,7 @@ from upapp a left join where a.id = ${appid}$""" recs = await sor.R('upapp', {'id': upappid}) if len(recs) < 1: - e = Exception(f'{upappid=}, {callerid=} has not apikey') + e = Exception(f'upapp id={upappid} not found, result={recs}') exception(f'{e}, {format_exc()}') raise e r = recs[0]