From 30f8825de7a78cd4cb496b54a7f9d9c9c8fc4b1f Mon Sep 17 00:00:00 2001 From: Christian Franke Date: Fri, 16 Dec 2016 22:53:19 +0100 Subject: Fix calendar script --- scripts/get_calendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get_calendar.py b/scripts/get_calendar.py index 9e48852..898a80f 100644 --- a/scripts/get_calendar.py +++ b/scripts/get_calendar.py @@ -147,7 +147,7 @@ if __name__ == '__main__': after_tab = datetime(now.year,now.month,1); if now.month + 2 > 12: - before_tab = datetime(now.year+1,now.month + 10,1) + before_tab = datetime(now.year+1,now.month - 10,1) else: before_tab = datetime(now.year,now.month+2,1) -- cgit v1.2.1