Skip to content

Commit 11d219b

Browse files
Apply suggestions from code review
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
1 parent 01cb26b commit 11d219b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/tools/meeting_dates.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ def generate_ics(app, exception):
7777
lines = [
7878
"BEGIN:VCALENDAR",
7979
"VERSION:2.0",
80-
"PRODID:-//Python Docs Community//Meeting dates//EN",
81-
"X-WR-CALDESC:Python docs community meeting dates from https://docs-community.readthedocs.io/",
82-
"X-WR-CALNAME:Python docs community meeting dates",
80+
"PRODID:-//Python Docs WG//Meeting dates//EN",
81+
"X-WR-CALDESC:Python Docs WG meetings from https://docs-community.readthedocs.io/",
82+
"X-WR-CALNAME:Python Docs WG meetings",
8383
]
8484
today = dt.date.today()
8585
meetings = past_meetings(today, 12) + upcoming_meetings(today, 12)
@@ -92,8 +92,8 @@ def generate_ics(app, exception):
9292
f"DTSTAMP:{dt.datetime.now(dt.timezone.utc).strftime('%Y%m%dT%H%M%SZ')}",
9393
f"DTSTART:{start.strftime('%Y%m%dT%H%M%SZ')}",
9494
f"DTEND:{end.strftime('%Y%m%dT%H%M%SZ')}",
95-
"SUMMARY:Docs Community Meeting",
96-
f"URL:https://arewemeetingyet.com/UTC/{date.isoformat()}/{hour}:00/Docs Community Meeting",
95+
"SUMMARY:Python Docs WG",
96+
f"URL:https://arewemeetingyet.com/UTC/{date.isoformat()}/{hour}:00/Python Docs WG meeting",
9797
"END:VEVENT",
9898
]
9999
lines += ["END:VCALENDAR"]

0 commit comments

Comments
 (0)