# HG changeset patch # User Boris Feld # Date 2017-06-30 01:45:33 # Node ID 6742e18e41f0d93304f8ef476b4272e16f29cefa # Parent af4f0c74f8b5226452130b8d4fec7397522d037d configitems: register the 'web.allow_archive' config diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -588,6 +588,9 @@ coreconfigitem('web', 'accesslog', coreconfigitem('web', 'address', default='', ) +coreconfigitem('web', 'allow_archive', + default=list, +) coreconfigitem('worker', 'backgroundclose', default=dynamicdefault, )