We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be85a24 commit ba1765eCopy full SHA for ba1765e
generate_xlsx_report.py
@@ -68,6 +68,8 @@ def get_company_name(product:str) -> str:
68
def get_product_name(product:str) -> str:
69
"""Returns a beautified product name and version"""
70
# 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)
73
if 'connext' in product.lower():
74
return 'Connext DDS' + re.search(r'([\d.]+)', product).group(1)
75
elif 'opendds' in product.lower():
0 commit comments