From b87d5ac673f085e0b4a13eb9be7506167f978884 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 27 Oct 2014 14:24:38 -0500 Subject: [PATCH] Pass parameter to recursive call. --- earwigbot/wiki/copyvios/exclusions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earwigbot/wiki/copyvios/exclusions.py b/earwigbot/wiki/copyvios/exclusions.py index 4a17cd9..82beda9 100644 --- a/earwigbot/wiki/copyvios/exclusions.py +++ b/earwigbot/wiki/copyvios/exclusions.py @@ -155,7 +155,7 @@ class ExclusionsDB(object): log = u"Database for {0} is still fresh (last updated {1} seconds ago)" self._logger.debug(log.format(sitename, time_since_update)) if sitename != "all": - self.sync("all") + self.sync("all", force=force) def check(self, sitename, url): """Check whether a given URL is in the exclusions database.