1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

Merge pull request #424 from setrofim/agenda-fix

AgendaPaser: fix duplicate source error
This commit is contained in:
marcbonnici 2017-06-27 10:46:04 +01:00 committed by GitHub
commit e884c3bcca

View File

@ -114,7 +114,7 @@ class AgendaParser(object):
if 'run_name' in entry:
state.run_config.set('run_name', entry.pop('run_name'))
state.load_config(entry, source, wrap_exceptions=False)
state.load_config(entry, '{}/{}'.format(source, name), wrap_exceptions=False)
def _pop_sections(self, raw):
sections = raw.pop("sections", [])