diff -r d49144a1422f -r a820a7a1fce0 mercurial/sslutil.py --- a/mercurial/sslutil.py Thu Nov 21 01:07:47 2024 -0500 +++ b/mercurial/sslutil.py Thu Nov 21 11:46:10 2024 -0500 @@ -103,8 +103,8 @@ # BEAST and POODLE). We allow users to downgrade to TLS 1.0+ via config # options in case a legacy server is encountered. - # setup.py checks that TLS 1.1 or TLS 1.2 is present, so the following - # assert should not fail. + # setup.py checks that TLS 1.2 is present, so the following assert should + # not fail. assert supportedprotocols - {b'tls1.0', b'tls1.1'} defaultminimumprotocol = b'tls1.2'