diff -r a2f922825721 -r b73bae3520b8 mercurial/sslutil.py --- a/mercurial/sslutil.py Thu Feb 02 17:36:07 2023 +0100 +++ b/mercurial/sslutil.py Thu Feb 02 17:36:15 2023 +0100 @@ -628,7 +628,7 @@ # Otherwise, use the list of more secure ciphers if found in the ssl module. if exactprotocol: sslcontext.set_ciphers('DEFAULT:@SECLEVEL=0') - elif util.safehasattr(ssl, b'_RESTRICTED_SERVER_CIPHERS'): + elif util.safehasattr(ssl, '_RESTRICTED_SERVER_CIPHERS'): sslcontext.options |= getattr(ssl, 'OP_CIPHER_SERVER_PREFERENCE', 0) # pytype: disable=module-attr sslcontext.set_ciphers(ssl._RESTRICTED_SERVER_CIPHERS)