X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fspecification_parser.py;h=501f9f191ab4032c250c53e3de67f31d648a85b1;hp=7ee6dbb4868dc9933ec35ec92bd08b48eaebba7b;hb=c4f32cdc7542941815a75a2de5a09ed9cc0de0d9;hpb=6c1043c843b4fcd33e7004876cbced565c222f58 diff --git a/resources/tools/presentation/specification_parser.py b/resources/tools/presentation/specification_parser.py index 7ee6dbb486..501f9f191a 100644 --- a/resources/tools/presentation/specification_parser.py +++ b/resources/tools/presentation/specification_parser.py @@ -486,7 +486,7 @@ class Specification(object): pass # add data sets to the elements: - if isinstance(element["data"], str): + if isinstance(element.get("data", None), str): data_set = element["data"] try: element["data"] = self.configuration["data-sets"][data_set] @@ -515,7 +515,7 @@ class Specification(object): element["layout"].pop("layout") try: for key, val in (self.configuration["plot-layouts"] - [layout]): + [layout].items()): element["layout"][key] = val except KeyError: raise PresentationError("Layout {0} is not defined in " @@ -558,9 +558,6 @@ class Specification(object): self._parse_output() self._parse_static() self._parse_elements() - print(self.tables) - print(self.files) - print(self.plots) logging.debug("Specification: \n{}". format(pformat(self._specification)))