[ghc-wiki] Improve script to better ignore unreleased releases

This commit is contained in:
Marc Wrobel
2025-09-11 08:57:10 +02:00
parent 061cd2b391
commit 81d2647969

View File

@@ -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]