summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/base_events.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-04-27 07:08:05 (GMT)
committerGitHub <noreply@github.com>2022-04-27 07:08:05 (GMT)
commit280749a8fdfa9b42e249b7e09d2b44607fff228d (patch)
treeb2ff6692e2f0746a72f76998c1ff35835a949403 /Lib/asyncio/base_events.py
parentdbe666d39880352360cb07787d47237448196bf4 (diff)
downloadcpython-280749a8fdfa9b42e249b7e09d2b44607fff228d.zip
cpython-280749a8fdfa9b42e249b7e09d2b44607fff228d.tar.gz
cpython-280749a8fdfa9b42e249b7e09d2b44607fff228d.tar.bz2
Fix missing `f` prefix on f-strings (GH-91910)
(cherry picked from commit f882d33778ee2625ab32d90e28edb6878fb8af93) Co-authored-by: Alexander Shadchin <alexandr.shadchin@gmail.com>
Diffstat (limited to 'Lib/asyncio/base_events.py')
-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 952da11..ea10399 100644
--- a/Lib/asyncio/base_events.py
+++ b/Lib/asyncio/base_events.py
@@ -884,7 +884,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: