diff options
author | Tibor Frank <tifrank@cisco.com> | 2022-02-03 10:11:36 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2022-02-03 10:17:16 +0100 |
commit | 100fc988c8140e36affac9fadc770328cc1d34b2 (patch) | |
tree | 9277150e3ba74c31064f4a4375e4fd33a5fe574f /resources/tools/presentation/generator_tables.py | |
parent | 11c41202e1d2e5f7e21975ea77372f2c91dbe4b0 (diff) |
PAL: Process exception while writing table
- table_merged_details
Change-Id: I4ee8b1c2f56c367e22d6e75853c8bb074d62935b
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_tables.py')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index a7b1500f29..59250d0678 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -489,10 +489,17 @@ def table_merged_details(table, input_data): separator = u"" if table[u'output-file'].endswith(u"/") else u"_" file_name = f"{table[u'output-file']}{separator}{suite_name}.csv" logging.info(f" Writing file: {file_name}") - with open(file_name, u"wt") as file_handler: - file_handler.write(u",".join(header) + u"\n") - for item in table_lst: - file_handler.write(u",".join(item) + u"\n") + try: + with open(file_name, u"wt") as file_handler: + file_handler.write(u",".join(header) + u"\n") + for item in table_lst: + file_handler.write(u",".join(item) + u"\n") + except Exception as err: + logging.error(f"{err}") + logging.info(header) + logging.info(table_lst) + if file_handler: + file_handler.close() logging.info(u" Done.") |