From a69117a203199d17cfa8a32917cb6fc3ce422ce2 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Sat, 23 Jul 2016 13:36:00 +0000 Subject: [PATCH] always sort the produced config files --- src/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registry.py b/src/registry.py index 9a8f7e3ad..c924066f3 100644 --- a/src/registry.py +++ b/src/registry.py @@ -192,7 +192,7 @@ def join(names): class Group(object): """A group; it doesn't hold a value unless handled by a subclass.""" def __init__(self, help='', supplyDefault=False, - orderAlphabetically=False, private=False): + orderAlphabetically=True, private=False): self._help = utils.str.normalizeWhitespace(help) self._name = 'unset' self._added = []