From: Gregory P. Smith Date: Sun, 1 Dec 2024 06:44:43 +0000 (-0800) Subject: Add the missing `f` on an f-string error message in multiprocessing. (GH-127462) X-Git-Tag: v3.14.0a3~164 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=11c01092d5fa8f02c867a7f1f3c135ce63db4838;p=thirdparty%2FPython%2Fcpython.git Add the missing `f` on an f-string error message in multiprocessing. (GH-127462) --- diff --git a/Lib/multiprocessing/connection.py b/Lib/multiprocessing/connection.py index 996887cb7139..710aba9685ef 100644 --- a/Lib/multiprocessing/connection.py +++ b/Lib/multiprocessing/connection.py @@ -963,7 +963,7 @@ def answer_challenge(connection, authkey: bytes): f'Protocol error, expected challenge: {message=}') message = message[len(_CHALLENGE):] if len(message) < _MD5ONLY_MESSAGE_LENGTH: - raise AuthenticationError('challenge too short: {len(message)} bytes') + raise AuthenticationError(f'challenge too short: {len(message)} bytes') digest = _create_response(authkey, message) connection.send_bytes(digest) response = connection.recv_bytes(256) # reject large message