Mercurial > hg
changeset 29611:334632380e22 stable
hghave: fix typo of sslutil.supportedprotocols
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Tue, 19 Jul 2016 21:16:44 +0900 |
parents | 754f63671229 |
children | a234b32b744a fe0eeef0986a |
files | tests/hghave.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/hghave.py Tue Jul 19 03:29:53 2016 -0700 +++ b/tests/hghave.py Tue Jul 19 21:16:44 2016 +0900 @@ -442,7 +442,7 @@ @check("tls1.2", "TLS 1.2 protocol support") def has_tls1_2(): from mercurial import sslutil - return 'tls1.2' in sslutil.supportprotocols + return 'tls1.2' in sslutil.supportedprotocols @check("windows", "Windows") def has_windows():