From 7549dc1c0eb18c2333c01eb8594c8cf0b22cb0bd Mon Sep 17 00:00:00 2001 From: Pierre-Yves David Date: Wed, 28 Jun 2017 13:31:18 +0200 Subject: [PATCH] config: register the 'devel.disableloaddefaultcerts' config --- mercurial/configitems.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mercurial/configitems.py b/mercurial/configitems.py index a1a7431544..90ba4f7607 100644 --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -68,6 +68,9 @@ coreconfigitem('devel', 'check-locks', coreconfigitem('devel', 'check-relroot', default=False, ) +coreconfigitem('devel', 'disableloaddefaultcerts', + default=False, +) coreconfigitem('patch', 'fuzz', default=2, )