diff options
| -rw-r--r-- | src/utils/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/http.py b/src/utils/http.py index 18a37599..e9cf2ede 100644 --- a/src/utils/http.py +++ b/src/utils/http.py @@ -243,7 +243,7 @@ def request_many(requests: typing.List[Request]) -> typing.Dict[str, Response]: response = await client.fetch(t_request) except: raise RequestManyException( - "request_many failed for %s", [url]) + "request_many failed for %s" % url) headers = utils.CaseInsensitiveDict(dict(response.headers)) data = response.body.decode("utf8") |
