From f7054de9d8a2c4cc65e456040e4fc013f165a4cc Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 16 Jul 2012 00:27:21 -0400 Subject: [PATCH] short: 500b -> 1000b --- earwigbot/tasks/afc_statistics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/earwigbot/tasks/afc_statistics.py b/earwigbot/tasks/afc_statistics.py index 47a6db8..27789a1 100644 --- a/earwigbot/tasks/afc_statistics.py +++ b/earwigbot/tasks/afc_statistics.py @@ -698,7 +698,7 @@ class AFCStatistics(Task): """Return any special notes or warnings about this page. resubmit: submission was resubmitted after a previous decline - short: submission is fewer than 500 bytes + short: submission is fewer than 1000 bytes no-inline: submission has no inline citations unsourced: submission lacks references completely old: submission has not been touched in > 4 days @@ -714,7 +714,7 @@ class AFCStatistics(Task): if "D" in statuses and chart != self.CHART_MISPLACE: notes += "|nr=1" # Submission was resubmitted - if len(content) < 500: + if len(content) < 1000: notes += "|ns=1" # Submission is short if not re.search("\(.*?)\", content, re.I | re.S):