# HG changeset patch # User Boris Feld # Date 1507933728 -7200 # Node ID fd4caf1b23f664e3c9f0dbfac312f64c4bedd908 # Parent 607085aa4d676db7894adfbc6f8eeabdd1c5ec4c configitems: register the 'hostsecurity.*:ciphers' config diff -r 607085aa4d67 -r fd4caf1b23f6 mercurial/configitems.py --- a/mercurial/configitems.py Sat Oct 14 00:28:13 2017 +0200 +++ b/mercurial/configitems.py Sat Oct 14 00:28:48 2017 +0200 @@ -479,6 +479,10 @@ default=dynamicdefault, generic=True, ) +coreconfigitem('hostsecurity', '.*:ciphers$', + default=dynamicdefault, + generic=True, +) coreconfigitem('http_proxy', 'always', default=False, )