summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorAlexander Shadchin <alexandr.shadchin@gmail.com>2022-04-27 06:30:54 (GMT)
committerGitHub <noreply@github.com>2022-04-27 06:30:54 (GMT)
commitf882d33778ee2625ab32d90e28edb6878fb8af93 (patch)
tree15ceed9ad6e1461e0754b0c4e8f422326195a409 /Lib/asyncio
parent80de0273c0caf8bae19787bb00255eb3fb2a2d0c (diff)
downloadcpython-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.py2
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: