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 df0960f commit 7df636aCopy full SHA for 7df636a
lib/dir_listing.py
@@ -58,6 +58,8 @@ def fetch_summary(meeting):
58
if not sessions:
59
return
60
for session_id in sessions:
61
+ if not session_id:
62
+ continue
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:
0 commit comments