From eb6f94529d653d0f3257b508593b1fe5410fc129 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 18 Apr 2025 17:42:00 +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 08e4eec..2c28ab7 100755 --- a/appPublic/httpclient.py +++ b/appPublic/httpclient.py @@ -137,7 +137,7 @@ class HttpClient: headers=headers) if resp.status==200: return await self.handleResp(url, resp, response_type, stream_func=stream_func) - msg = f'http error({resp.status}, {url=},{params=}, {data=}, {jd=}, {headers=}, {kw=})' + msg = f'http error({resp.status}, {url=},{params=}, {data=}, {jd=})' exception(msg) raise HttpError(resp.status, msg)