aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_tables.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2022-02-03 16:19:24 +0100
committerTibor Frank <tifrank@cisco.com>2022-02-03 16:19:24 +0100
commit9af72734b4ff4cc239e69e8f787228e68d02501c (patch)
tree870afa2a97ebfabc36cc01e59816fb119e4554ce /resources/tools/presentation/generator_tables.py
parent100fc988c8140e36affac9fadc770328cc1d34b2 (diff)
Report: Add dpdk icx static content
Change-Id: I79f1d70a3395551cfff872bd1d66ee900b9129b8 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.py15
1 files changed, 4 insertions, 11 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py
index 59250d0678..a7b1500f29 100644
--- a/resources/tools/presentation/generator_tables.py
+++ b/resources/tools/presentation/generator_tables.py
@@ -489,17 +489,10 @@ 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}")
- 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()
+ 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")
logging.info(u" Done.")