mercurial/sslutil.py
changeset 50599 b73bae3520b8
parent 50598 a2f922825721
child 50925 d718eddf01d9
--- 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)