config: fix typo

Change-Id: Ie90993d9b2d387780fa3faa28fd8d4523f7fc866
This commit is contained in:
Alexander Zaft 2024-10-28 11:10:34 +01:00 committed by Markus Zolliker
parent 7c3f9f7196
commit 1bd243f3d2

View File

@ -133,7 +133,7 @@ def process_file(filename, log):
node = NodeCollector()
mods = Collector(Mod)
ns = {'Node': node.add, 'Mod': mods.add, 'Param': Param,
'Prop': 'Param', 'Command': Param, 'Group': Group}
'Prop': Param, 'Command': Param, 'Group': Group}
# pylint: disable=exec-used
exec(compile(config_text, filename, 'exec'), ns)