From 8c8a2fcab82b5a5b7745cddd92a5c54d91675410 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 18 Jan 2020 11:50:04 -0500 Subject: [PATCH] afc_statistics: Reduce limit to 1000 --- tasks/afc_statistics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/afc_statistics.py b/tasks/afc_statistics.py index 83e29b7..46cf8ef 100644 --- a/tasks/afc_statistics.py +++ b/tasks/afc_statistics.py @@ -45,7 +45,7 @@ templates it uses, documented in [[Template:AFC statistics/doc]]. --> {{Documentation|Template:%(pageroot)s/doc}} """ -_PER_CHART_LIMIT = 1500 +_PER_CHART_LIMIT = 1000 class AFCStatistics(Task): """A task to generate statistics for WikiProject Articles for Creation. @@ -192,7 +192,7 @@ class AFCStatistics(Task): if skipped: footer += "|skip={}".format(skipped) footer += "}}" - chart += "\n" + footer + chart += "\n" + footer + "\n" return chart def _compile_chart_row(self, page):