From b7d282fe3b92c6d3bbf48d203644ac3073163609 Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Thu, 28 May 2020 15:06:15 +0200 Subject: [PATCH] cue: load 'defaults' setup file last --- cue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cue.py b/cue.py index a5f62db..e8f00e8 100644 --- a/cue.py +++ b/cue.py @@ -527,9 +527,9 @@ def prepare(args): host_info() print('{0}Loading setup files{1}'.format(ANSI_YELLOW, ANSI_RESET)) - source_set('defaults') if 'SET' in os.environ: source_set(os.environ['SET']) + source_set('defaults') [complete_setup(mod) for mod in modlist()]