Fix missing f prefix on f-strings (GH-91910)

This commit is contained in:
Alexander Shadchin 2022-04-27 09:30:54 +03:00 committed by GitHub
parent 80de0273c0
commit f882d33778
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -888,7 +888,7 @@ class BaseEventLoop(events.AbstractEventLoop):
# non-mmap files even if sendfile is supported by OS
raise exceptions.SendfileNotAvailableError(
f"syscall sendfile is not available for socket {sock!r} "
"and file {file!r} combination")
f"and file {file!r} combination")
async def _sock_sendfile_fallback(self, sock, file, offset, count):
if offset: