[3.11] io: Add missing f (#96701)

This commit is contained in:
Jelle Zijlstra 2022-09-09 02:28:26 -07:00 committed by GitHub
parent 99919d4e8a
commit 7bfb11de68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -70,7 +70,7 @@ def __getattr__(name):
global OpenWrapper
OpenWrapper = open
return OpenWrapper
raise AttributeError("module {__name__!r} has no attribute {name!r}")
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
# Pretend this exception was created here.