From 9a4eea1ce2e49d872e22872c46985c659bad7254 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Tue, 9 Aug 2022 15:17:04 +0200 Subject: [PATCH] PAL: Add debug output to table_weekly_comparison Change-Id: Ibb117e49e2ff5d3381a9d081c3f6eed6721abe51 Signed-off-by: Tibor Frank --- resources/tools/presentation/generator_tables.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 273288c1aa..82e59c466f 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -2265,7 +2265,19 @@ def table_weekly_comparison(table, in_data): txt_file_name = f"{table[u'output-file']}.txt" logging.info(f" Writing the file {txt_file_name}") - convert_csv_to_pretty_txt(csv_file_name, txt_file_name, delimiter=u",") + try: + convert_csv_to_pretty_txt(csv_file_name, txt_file_name, delimiter=u",") + except Exception as err: + logging.error(repr(err)) + for hdr in header: + logging.info(",".join(hdr)) + for test in tbl_lst: + logging.info(",".join( + [ + str(item).replace(u"None", u"-").replace(u"nan", u"-"). + replace(u"null", u"-") for item in test + ] + )) # Reorganize header in txt table txt_table = list() -- 2.16.6