X-Git-Url: https://git.ralfj.de/mass-build.git/blobdiff_plain/b8fb01b798441403be79fb586f2ece3a5578214e..8305e00803ac24b824091d634418a69294f0407a:/mass_build.py 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]