From 897208569601a0a946fdabfec7150e4886c94242 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 17 Jul 2026 10:58:28 +0800 Subject: [PATCH] bugfix --- unipay/providers/wechat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unipay/providers/wechat.py b/unipay/providers/wechat.py index 40911f1..cf8db82 100644 --- a/unipay/providers/wechat.py +++ b/unipay/providers/wechat.py @@ -176,7 +176,7 @@ class WechatGateway(Gateway): ret = await resp.json() debug(f'{ret=}') return ret.get("h5_url") - except EXception as e: + except Exception as e: exception(f'{e}, {url=}, {body_str=}, {auth=}') raise e return None