1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

Fix log format bug

`{}` is not a valid placeholder in log formatting.
This commit is contained in:
Stefan Tjarks
2019-07-16 07:42:37 -07:00
parent 200262fb5c
commit 988ac335d4
2 changed files with 14 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ def vcr_request(cassette, real_request):
response.close()
return response
log.info("{} not in cassette, sending to real server", vcr_request)
log.info('%s not in cassette, sending to real server', vcr_request)
response = await real_request(self, method, url, **kwargs) # NOQA: E999
await record_responses(cassette, vcr_request, response)