From e5fd8bd0b31a904d7a910c4669444e8dcbded42b Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Fri, 28 Mar 2025 14:58:28 +0000 Subject: [PATCH] Fix number of builds on wiki page in forks --- wiki/update_wiki.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/update_wiki.py b/wiki/update_wiki.py index 2a020a85..3f1dae96 100755 --- a/wiki/update_wiki.py +++ b/wiki/update_wiki.py @@ -39,7 +39,7 @@ def calculate_monthly_stat( year_month_file: YearMonthFile, year_month_date: datetime.date ) -> Statistics: builds = sum( - "jupyter/base-notebook" in line and "aarch64" not in line + "/base-notebook" in line and "aarch64" not in line for line in year_month_file.content.split("\n") )