diff --git a/py/util.py b/py/util.py index 3f7715a..50ca91d 100644 --- a/py/util.py +++ b/py/util.py @@ -12,7 +12,9 @@ def get_day_with_suffix(day): def format_today(): """Format the current datetime""" now = datetime.now() - return f"{get_day_with_suffix(now.day)} {now.strftime("%B")}" + day = get_day_with_suffix(now.day) + month = now.strftime("%B") + return f"{day} {month}" def format_list(list) -> str: