From 54c1ed716629c319fd5178409bb85b356332321d Mon Sep 17 00:00:00 2001 From: mprahl Date: Thu, 4 Oct 2018 07:15:20 -0400 Subject: [PATCH] Change the config base_module_names to be a list instead of a set to allow ordering by the admin --- module_build_service/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module_build_service/config.py b/module_build_service/config.py index db9a8e5e..dca1a0e7 100644 --- a/module_build_service/config.py +++ b/module_build_service/config.py @@ -411,9 +411,9 @@ class Config(object): 'desc': ('The distinguished name of the container or organizational unit containing ' 'the groups in LDAP')}, 'base_module_names': { - 'type': set, - 'default': set(['platform']), - 'desc': ("Set of module names which defines the product version " + 'type': list, + 'default': ['platform'], + 'desc': ("List of base module names which define the product version " "(by their stream) of modules depending on them.")}, 'base_module_koji_arches': { 'type': dict,