# HG changeset patch # User Boris Feld # Date 2017-10-13 14:39:06 # Node ID 31723cff35fa78c4be6f0445cb65c5e3acac15ca # Parent 23f891164e59eb0e2c164d9402acf9fa12bf7eec configitems: register the 'hooks' config section diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -446,6 +446,10 @@ coreconfigitem('format', 'usegeneraldelt coreconfigitem('format', 'usestore', default=True, ) +coreconfigitem('hooks', '.*', + default=dynamicdefault, + generic=True, +) coreconfigitem('hostsecurity', 'ciphers', default=None, )