Skip to content

Commit ba1765e

Browse files
committed
Fixed Micro name in the generate_report
1 parent be85a24 commit ba1765e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

generate_xlsx_report.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ def get_company_name(product:str) -> str:
6868
def get_product_name(product:str) -> str:
6969
"""Returns a beautified product name and version"""
7070
# set the beautified name and version
71+
if 'connext' in product.lower() and 'micro' in product.lower():
72+
return 'Connext DDS Micro ' + re.search(r'([\d.]+)', product).group(1)
7173
if 'connext' in product.lower():
7274
return 'Connext DDS' + re.search(r'([\d.]+)', product).group(1)
7375
elif 'opendds' in product.lower():

0 commit comments

Comments
 (0)