diff options
author | Tibor Frank <tifrank@cisco.com> | 2021-05-03 12:17:03 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2021-05-03 12:17:03 +0200 |
commit | ed54e298a1b7796e37c1d1f4e0642595177949bd (patch) | |
tree | 58847cbe76f15e5fc5f5f863ab18527008abdc71 /resources/tools/presentation/generator_plots.py | |
parent | 37ea2ceb606bdfc338cc76330cb9289c12f63852 (diff) |
PAL: Fix plots generator
Csth hange-Id: I960c575841a92687a1272c905bbcc057de4a737e
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Idb1bad40d7bd138f072f84377c4706bfcce19238
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |