diff options
author | Alexander Shadchin <alexandr.shadchin@gmail.com> | 2022-04-27 06:30:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 06:30:54 (GMT) |
commit | f882d33778ee2625ab32d90e28edb6878fb8af93 (patch) | |
tree | 15ceed9ad6e1461e0754b0c4e8f422326195a409 /Lib/asyncio | |
parent | 80de0273c0caf8bae19787bb00255eb3fb2a2d0c (diff) | |
download | cpython-f882d33778ee2625ab32d90e28edb6878fb8af93.zip cpython-f882d33778ee2625ab32d90e28edb6878fb8af93.tar.gz cpython-f882d33778ee2625ab32d90e28edb6878fb8af93.tar.bz2 |
Fix missing `f` prefix on f-strings (GH-91910)
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/base_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py index 5eea165..fa00bf9 100644 --- a/Lib/asyncio/base_events.py +++ b/Lib/asyncio/base_events.py @@ -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: |