From a4cdbf05722f6e880f465121a416828278195bd7 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Thu, 8 Feb 2018 09:46:20 +0100 Subject: [PATCH] PAL: Clean the code Change-Id: I7aa196cdc7bf4d34c1313f8f811ab3f6dd8f10f2 Signed-off-by: Tibor Frank --- resources/tools/presentation/input_data_parser.py | 2 +- resources/tools/presentation/static_content.py | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index e1763b97d2..203a3bfd25 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -866,7 +866,7 @@ class InputData(object): except (KeyError, IndexError, ValueError) as err: logging.error(" Missing mandatory parameter in the element " - "specification.", err) + "specification: {0}".format(err)) return None except AttributeError: return None diff --git a/resources/tools/presentation/static_content.py b/resources/tools/presentation/static_content.py index fe2d0724bf..a02330c15f 100644 --- a/resources/tools/presentation/static_content.py +++ b/resources/tools/presentation/static_content.py @@ -34,8 +34,11 @@ def prepare_static_content(spec): content. """ - src = spec.static["src-path"] - dst = spec.static["dst-path"] + src = spec.static.get("src-path", None) + dst = spec.static.get("dst-path", None) + if src is None or dst is None: + logging.warning("No static content specified, skipping") + return # Copy all the static content to the build directory: logging.info("Copying the static content ...") -- 2.16.6