We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4702063 commit 745285cCopy full SHA for 745285c
lib/dir_listing.py
@@ -62,7 +62,7 @@ def fetch_summary(meeting):
62
for session_id in session_ids:
63
session_time = "-".join(session_id.rsplit("-", 2)[-2:])
64
summary.append(f"# Session: {session_time}")
65
- with os.open(f"{auto_minutes_path}/{session_id}", "r") as fh:
+ with open(f"{auto_minutes_path}/{session_id}", "r") as fh:
66
session_md = fh.read()
67
session_md = session_md.replace(f"# {wgname.upper()}", "")
68
session_md = session_md.replace(f"# {wgname.lower()}", "")
0 commit comments