From 1da19da813655f643bc3c6e4d03bed987f076f07 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Fri, 23 Jul 2021 11:05:04 +0200 Subject: Trending: Add exception handling for anomalies classification Change-Id: I6f2ee7552c513ccf2fa453f143dd52ea880bd412 Signed-off-by: Tibor Frank --- resources/tools/presentation/generator_tables.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'resources/tools/presentation/generator_tables.py') diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index a715ecb800..449b2357a8 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -1234,6 +1234,9 @@ def table_perf_trending_dash_html(table, input_data): try: with open(table[u"input-file"], u'rt') as csv_file: csv_lst = list(csv.reader(csv_file, delimiter=u',', quotechar=u'"')) + except FileNotFoundError as err: + logging.warning(f"{err}") + return except KeyError: logging.warning(u"The input file is not defined.") return -- cgit 1.2.3-korg