From c1fa4004a20a5c954fbf5177e152184782f4dc47 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 21 May 2026 17:19:36 +0800 Subject: [PATCH] bugfix --- llmage/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llmage/utils.py b/llmage/utils.py index c4b106e..bb16603 100644 --- a/llmage/utils.py +++ b/llmage/utils.py @@ -39,7 +39,7 @@ async def get_tpac_balance(apikey, userid): d = json.loads(b.decode('utf-8')) if d['status'] == 'ok': return d['balance'] - exception(f'{url=}, {userid=}, {apikey=}, error') + exception(f'{url=}, {userid=}, {apikey=}, {b} error') return None except Exception as e: exception(f'{url=}, {userid=}, {apikey=}, error:{e}')