From 337be1b2bc299f125e73be96bc2f4c06e2a563a0 Mon Sep 17 00:00:00 2001 From: Alexander Zaft Date: Mon, 28 Oct 2024 11:10:34 +0100 Subject: [PATCH] config: fix typo Change-Id: Ie90993d9b2d387780fa3faa28fd8d4523f7fc866 --- frappy/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappy/config.py b/frappy/config.py index 2a2da9f2..d8279b59 100644 --- a/frappy/config.py +++ b/frappy/config.py @@ -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)