diff --git a/scrapers/wy/events.py b/scrapers/wy/events.py index 7e3ea68ef2..fa54a294de 100644 --- a/scrapers/wy/events.py +++ b/scrapers/wy/events.py @@ -18,7 +18,7 @@ def scrape(self): # this month and the next 2 months events = set() - for add in [0, 1, 2]: + for add in [-2, -1, 0, 1, 2]: test_date = today + relativedelta.relativedelta(months=+add) month_url = url.format(str(test_date.year), str(test_date.month).zfill(2)) page = self.get(month_url).json()