# HG changeset patch # User Boris Feld # Date 1507933814 -7200 # Node ID 48d2b396cf6c2a891e76a5a2e72721afc391dcfb # Parent 17919e9006b9d00fe207fed43e742ce2945367f6 configitems: register the 'hostsecurity.*:verifycertsfile' config diff -r 17919e9006b9 -r 48d2b396cf6c mercurial/configitems.py --- a/mercurial/configitems.py Sat Oct 14 00:29:31 2017 +0200 +++ b/mercurial/configitems.py Sat Oct 14 00:30:14 2017 +0200 @@ -487,6 +487,11 @@ default=list, generic=True, ) +coreconfigitem('hostsecurity', '.*:verifycertsfile$', + default=None, + generic=True, +) + coreconfigitem('http_proxy', 'always', default=False, )