From 81fc51f2e152b9bd090cabdcfcfdea8660f82ae7 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 6 May 2025 17:35:51 +0800 Subject: [PATCH] bugfix --- appPublic/httpclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appPublic/httpclient.py b/appPublic/httpclient.py index 2710c4e..1d890f9 100755 --- a/appPublic/httpclient.py +++ b/appPublic/httpclient.py @@ -235,7 +235,7 @@ class JsonHttpAPI: ns1 = self.env.copy() ns1.update(resp) rets = self.te.renders(resptmpl, ns1) - ret = json.loads(rets)) + ret = json.loads(rets) return ret if __name__ == '__main__':