Skip to content

Commit 745285c

Browse files
committed
not os open
1 parent 4702063 commit 745285c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/dir_listing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def fetch_summary(meeting):
6262
for session_id in session_ids:
6363
session_time = "-".join(session_id.rsplit("-", 2)[-2:])
6464
summary.append(f"# Session: {session_time}")
65-
with os.open(f"{auto_minutes_path}/{session_id}", "r") as fh:
65+
with open(f"{auto_minutes_path}/{session_id}", "r") as fh:
6666
session_md = fh.read()
6767
session_md = session_md.replace(f"# {wgname.upper()}", "")
6868
session_md = session_md.replace(f"# {wgname.lower()}", "")

0 commit comments

Comments
 (0)