File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,9 @@ def generate_ics(app, exception):
7777 lines = [
7878 "BEGIN:VCALENDAR" ,
7979 "VERSION:2.0" ,
80- "PRODID:-//Python Docs Community//Meeting Dates//EN" ,
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" ,
8183 ]
8284 today = dt .date .today ()
8385 meetings = past_meetings (today , 12 ) + upcoming_meetings (today , 12 )
@@ -95,9 +97,7 @@ def generate_ics(app, exception):
9597 "END:VEVENT" ,
9698 ]
9799 lines += ["END:VCALENDAR" ]
98- ics = (
99- "\r \n " .join (lines ) + "\r \n "
100- ) # Required by spec for some reason: https://datatracker.ietf.org/doc/html/rfc5545#section-3.1
100+ ics = "\r \n " .join (lines ) + "\r \n "
101101
102102 with open (os .path .join (app .outdir , "docs-community-meetings.ics" ), "w" ) as f :
103103 f .write (ics )
You can’t perform that action at this time.
0 commit comments