Submitter | phabricator |
---|---|
Date | Jan. 30, 2018, 12:10 p.m. |
Message ID | <46037b2f1600bd5ef18a465890f6ea63@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/27079/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -17,7 +17,7 @@ def loadconfigtable(ui, extname, configtable): """update config item known to the ui with the extension ones""" - for section, items in configtable.items(): + for section, items in sorted(configtable.items()): knownitems = ui._knownconfig.setdefault(section, itemregister()) knownkeys = set(knownitems) newkeys = set(items)