diff options
author | Tibor Frank <tifrank@cisco.com> | 2020-02-07 14:07:07 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2020-02-10 11:50:49 +0100 |
commit | c1335b81c08aeeb5d45af39d45ce02dc1a7d4235 (patch) | |
tree | 04c014b69fed9defb1362abb2556c074255da676 /resources/tools/presentation/specification_parser.py | |
parent | 8605f3f406468f57bb9b2eac12a4421f65965300 (diff) |
PAL: Latency by percentile
Change-Id: I413271f4b1fad801463fb7f8f16112aedc0d058b
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/specification_parser.py')
-rw-r--r-- | resources/tools/presentation/specification_parser.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/resources/tools/presentation/specification_parser.py b/resources/tools/presentation/specification_parser.py index ef2fafccae..2360b78f2d 100644 --- a/resources/tools/presentation/specification_parser.py +++ b/resources/tools/presentation/specification_parser.py @@ -756,6 +756,13 @@ class Specification: except KeyError: pass + try: + element[u"output-file-links"] = self._replace_tags( + element[u"output-file-links"], + self._specification[u"environment"][u"paths"]) + except KeyError: + pass + # Add data sets to the elements: if isinstance(element.get(u"data", None), str): data_set = element[u"data"] |