From 3dd2d1e771e92e8d994cf78a1404068ad65b347f Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Fri, 5 Jun 2026 13:24:46 +0100 Subject: [PATCH] Don't link to deprecated Discord event in the iCal --- docs/tools/meeting_dates.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tools/meeting_dates.py b/docs/tools/meeting_dates.py index f6de863..d51c7e1 100644 --- a/docs/tools/meeting_dates.py +++ b/docs/tools/meeting_dates.py @@ -92,9 +92,9 @@ def generate_ics(app, exception): f"DTSTAMP:{dt.datetime.now(dt.timezone.utc).strftime('%Y%m%dT%H%M%SZ')}", f"DTSTART:{start.strftime('%Y%m%dT%H%M%SZ')}", f"DTEND:{end.strftime('%Y%m%dT%H%M%SZ')}", - "SUMMARY:Python Docs WG", + "SUMMARY:Python Docs WG monthly meeting", "DESCRIPTION:Agenda: https://hackmd.io/@encukou/pydocswg1", - " \\nDiscord event: https://discord.gg/yhvN2ECXSM?event=1389130476555337908", + " \\nDiscord channel: https://discord.gg/yhvN2ECXSM", "END:VEVENT", ] lines += ["END:VCALENDAR"]