summaryrefslogtreecommitdiffstats
path: root/update_topic.py
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2016-08-11 20:56:06 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2016-08-11 21:02:13 +0200
commit1d9eb3dc53b5148402568a65d1a72fd7fde536b0 (patch)
tree8cffc26f42818cc3181dd778aa355d96e45f6bd4 /update_topic.py
parentd469229dc37f8d14e1c72eab0e4bad8d2e5fd4fe (diff)
downloadupdate-topic-master.tar.gz
update-topic-master.tar.bz2
update-topic-master.zip
Correctly handle calls before the first tuesdayHEADmaster
Diffstat (limited to 'update_topic.py')
-rw-r--r--update_topic.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/update_topic.py b/update_topic.py
index 741ad4e..e88c80a 100644
--- a/update_topic.py
+++ b/update_topic.py
@@ -92,7 +92,10 @@ def seconds_until(when):
def get_next_meeting():
today = datetime.today()
- return (today + relativedelta(months=+1, day=1, weekday=TUESDAY)).date()
+ delta = relativedelta(day=1, weekday=TUESDAY)
+ if today >= (today + delta):
+ delta.months = 1
+ return (today + delta).date()
def update_topic(phenny, channel, topic):