From 5602ebb2bd37f94f5ef5fa7a3d213a5ca7f620fa Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Sat, 9 Nov 2024 15:12:45 +0000 Subject: [PATCH] [PR #9736/5ddeb06f backport][3.10] Fix typo in enable_cleanup_closed warning message (#9739) --- CHANGES/9736.misc.rst | 1 + aiohttp/connector.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 120000 CHANGES/9736.misc.rst diff --git a/CHANGES/9736.misc.rst b/CHANGES/9736.misc.rst new file mode 120000 index 00000000000..98c0ac8ac1d --- /dev/null +++ b/CHANGES/9736.misc.rst @@ -0,0 +1 @@ +9726.misc.rst \ No newline at end of file diff --git a/aiohttp/connector.py b/aiohttp/connector.py index 85862ac0097..5eac5d63111 100644 --- a/aiohttp/connector.py +++ b/aiohttp/connector.py @@ -291,7 +291,7 @@ def __init__( if enable_cleanup_closed and not NEEDS_CLEANUP_CLOSED: warnings.warn( "enable_cleanup_closed ignored because " - "https://github.com/python/cpython/pull/118960 is fixed in " + "https://github.com/python/cpython/pull/118960 is fixed " f"in Python version {sys.version_info}", DeprecationWarning, stacklevel=2,