Skip to content
Snippets Groups Projects
Commit 5988950a authored by Karl-Hermann Wieners's avatar Karl-Hermann Wieners
Browse files

mkexp: fix handling of namelist section variables

parent 77b77245
No related branches found
No related tags found
No related merge requests found
......@@ -550,7 +550,8 @@ for subjob, subconfig in jobs_config.items():
del subconfig
# Extend all namelists
for namelist, groups in job_config['namelists'].items():
for namelist in job_config['namelists'].sections:
groups = job_config['namelists'][namelist]
extended_groups = set()
for group in groups.sections:
extend(group, groups, extended_groups)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment