From ed54e298a1b7796e37c1d1f4e0642595177949bd Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Mon, 3 May 2021 12:17:03 +0200 Subject: [PATCH] PAL: Fix plots generator Csth hange-Id: I960c575841a92687a1272c905bbcc057de4a737e Signed-off-by: Tibor Frank Change-Id: Idb1bad40d7bd138f072f84377c4706bfcce19238 Signed-off-by: Tibor Frank --- resources/tools/presentation/generator_plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 965951a41e..39b6f9bea4 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -91,7 +91,7 @@ def generate_plots(spec, data): for index, plot in enumerate(spec.plots): try: logging.info(f" Plot nr {index + 1}: {plot.get(u'title', u'')}") - plot[u"limits"] = spec.configuration[u"limits"] + plot[u"limits"] = spec.environment[u"limits"] generator[plot[u"algorithm"]](plot, data) logging.info(u" Done.") except NameError as err: -- 2.16.6