diff options
author | Christian Franke <nobody@nowhere.ws> | 2016-12-16 22:53:19 +0100 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2016-12-16 22:53:19 +0100 |
commit | 30f8825de7a78cd4cb496b54a7f9d9c9c8fc4b1f (patch) | |
tree | e92225af2b56d88a0ae14f5f78b3264999544546 /scripts | |
parent | 9dbe01253724a06a5dd9d67f19aa3b0497cef48b (diff) |
Fix calendar script
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/get_calendar.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |