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/multiprocessing | |
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/multiprocessing')
-rw-r--r-- | Lib/multiprocessing/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/util.py b/Lib/multiprocessing/util.py index 790955e..6ad4632 100644 --- a/Lib/multiprocessing/util.py +++ b/Lib/multiprocessing/util.py @@ -120,7 +120,7 @@ def is_abstract_socket_namespace(address): return address[0] == 0 elif isinstance(address, str): return address[0] == "\0" - raise TypeError('address type of {address!r} unrecognized') + raise TypeError(f'address type of {address!r} unrecognized') abstract_sockets_supported = _platform_supports_abstract_sockets() |