From 0e7232a16cde1390a5a5492ced668e8844212be9 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Fri, 24 Apr 2015 00:10:14 +0100 Subject: [PATCH] Corrected comment --- RIGS/ical.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RIGS/ical.py b/RIGS/ical.py index ef351ecf..c276e512 100644 --- a/RIGS/ical.py +++ b/RIGS/ical.py @@ -16,7 +16,7 @@ class CalendarICS(ICalFeed): file_name = "rigs.ics" def items(self): - #include events from up to 3 months ago + #include events from up to 1 year ago start = datetime.datetime.now() - datetime.timedelta(days=365) filter = Q(start_date__gte=start) & ~Q(status=models.Event.CANCELLED)