1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 17:15:35 +00:00

Improve string format

This commit is contained in:
Jair Henrique
2023-06-26 15:57:17 -03:00
parent a77173c002
commit 6b2fc182c3
3 changed files with 13 additions and 12 deletions

View File

@@ -29,9 +29,9 @@ def vcr_fetch_impl(cassette, real_fetch_impl):
request,
599,
error=Exception(
"The request (%s) uses AsyncHTTPClient functionality "
f"The request ({request!r}) uses AsyncHTTPClient functionality "
"that is not yet supported by VCR.py. Please make the "
"request outside a VCR.py context." % repr(request),
"request outside a VCR.py context.",
),
request_time=self.io_loop.time() - request.start_time,
)