From 81d2647969939347edc14491d7943844d2428b42 Mon Sep 17 00:00:00 2001 From: Marc Wrobel Date: Thu, 11 Sep 2025 08:57:10 +0200 Subject: [PATCH] [ghc-wiki] Improve script to better ignore unreleased releases --- src/ghc-wiki.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ghc-wiki.py b/src/ghc-wiki.py index abdadf82..810c7543 100644 --- a/src/ghc-wiki.py +++ b/src/ghc-wiki.py @@ -67,7 +67,7 @@ with ProductData(config.product) as product_data: for row in series_table[1:]: [series, _download_link, _most_recent, next_planned, status] = row - if status == "Next major release": + if "Next major release" in status: continue series = series.split(' ')[0]