From d8f05b91cddead80da73700a519c5e4fb80bfa9c Mon Sep 17 00:00:00 2001 From: Marc Wrobel Date: Fri, 25 Jul 2025 22:24:17 +0200 Subject: [PATCH] [netbsd] Skip invalid EOL date (#473) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Empty EOL cells are now recognized as `Â`, adding a condition to ignore them. --- src/netbsd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netbsd.py b/src/netbsd.py index f7f5edd2..b23fa715 100644 --- a/src/netbsd.py +++ b/src/netbsd.py @@ -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)