From acc616e24b4d936037076f3915d1bc35cb197f2e Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sun, 15 Sep 2013 16:10:40 +0200 Subject: [PATCH] avoid needlessly creating a list --- mass_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mass_build.py b/mass_build.py index 93ae5a3..e9e3725 100755 --- a/mass_build.py +++ b/mass_build.py @@ -91,7 +91,7 @@ workProjects = [] # projects we work on # copy all items which don't exist below, except for those in the exclude list def inherit(subConfig, superConfig, exclude = ('name', 'projects')): - for name in list(superConfig.keys()): + for name in superConfig.keys(): if (not name in subConfig) and (not name in exclude): subConfig[name] = superConfig[name] -- 2.30.2