# HG changeset patch # User Boris Feld # Date 2017-06-30 01:43:37 # Node ID 798b679680aafd5eb6491a04580e4a4ddfa5b687 # Parent 029b33adbd17b19bb731dc78dc43ddd8c0c04e5b configitems: register the 'patchbomb.bundletype' config diff --git a/hgext/patchbomb.py b/hgext/patchbomb.py --- a/hgext/patchbomb.py +++ b/hgext/patchbomb.py @@ -99,6 +99,14 @@ stringio = util.stringio cmdtable = {} command = registrar.command(cmdtable) + +configtable = {} +configitem = registrar.configitem(configtable) + +configitem('patchbomb', 'bundletype', + default=None, +) + # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should # be specifying the version(s) of Mercurial they are tested with, or