diff --git a/hcatitles.py b/hcatitles.py index 5d2531c..3315ca3 100644 --- a/hcatitles.py +++ b/hcatitles.py @@ -25,7 +25,7 @@ def get_subtitle(): """find Wednesday of the current/next week""" today = date.today() if today.weekday() > 2: - wednesday = today + tiemdelta(9 - today.weekday()) + wednesday = today + timedelta(9 - today.weekday()) else: wednesday = today + timedelta(2 - today.weekday()) return wednesday.strftime('Bible Study %A %B %#d, %Y')