[netbsd] Skip invalid EOL date (#473)

Empty EOL cells are now recognized as `Â`, adding a condition to ignore them.
This commit is contained in:
Marc Wrobel
2025-07-25 22:24:17 +02:00
committed by GitHub
parent f450873dd2
commit d8f05b91cd

View File

@@ -25,7 +25,7 @@ with ProductData(config.product) as product_data:
logging.warning(f"Skipping row {cells}, could not parse release date")
eol_str = cells[2]
if not eol_str:
if not eol_str or eol_str == 'Â':
continue
eol = dates.parse_date(eol_str)