# HG changeset patch # User Boris Feld # Date 1507933771 -7200 # Node ID 17919e9006b9d00fe207fed43e742ce2945367f6 # Parent fd4caf1b23f664e3c9f0dbfac312f64c4bedd908 configitems: register the 'hostsecurity.*:fingerprints' config diff -r fd4caf1b23f6 -r 17919e9006b9 mercurial/configitems.py --- a/mercurial/configitems.py Sat Oct 14 00:28:48 2017 +0200 +++ b/mercurial/configitems.py Sat Oct 14 00:29:31 2017 +0200 @@ -483,6 +483,10 @@ default=dynamicdefault, generic=True, ) +coreconfigitem('hostsecurity', '.*:fingerprints$', + default=list, + generic=True, +) coreconfigitem('http_proxy', 'always', default=False, ) diff -r fd4caf1b23f6 -r 17919e9006b9 mercurial/sslutil.py --- a/mercurial/sslutil.py Sat Oct 14 00:28:48 2017 +0200 +++ b/mercurial/sslutil.py Sat Oct 14 00:29:31 2017 +0200 @@ -186,8 +186,7 @@ # Look for fingerprints in [hostsecurity] section. Value is a list # of : strings. - fingerprints = ui.configlist('hostsecurity', '%s:fingerprints' % hostname, - []) + fingerprints = ui.configlist('hostsecurity', '%s:fingerprints' % hostname) for fingerprint in fingerprints: if not (fingerprint.startswith(('sha1:', 'sha256:', 'sha512:'))): raise error.Abort(_('invalid fingerprint for %s: %s') % (