We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f796c2 commit 5b96581Copy full SHA for 5b96581
lib/dir_listing.py
@@ -56,7 +56,7 @@ def fetch_summary(meeting):
56
for session_id in sessions:
57
session_time = "-".join(session_id.rsplit("-", 2)[-2:])
58
summary.append(f"# Session: {session_time}")
59
- with fh as os.open(f"{auto_minutes_path}/{session_id}", "r"):
+ with os.open(f"{auto_minutes_path}/{session_id}", "r") as fh:
60
session_md = fh.read()
61
session_md = session_md.replace(f"# {wgname.upper()}", "")
62
summary.append(session_md)
0 commit comments