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 3a79e3b commit 4702063Copy full SHA for 4702063
lib/dir_listing.py
@@ -55,9 +55,9 @@ def fetch_summary(meeting):
55
manifest = json.load(fh)
56
sessions_lists = [s["sessions"] for s in manifest["sessionGroups"]
57
if s["sessionName"].lower() == wgname.lower()]
58
- if not session_lists:
+ if not sessions_lists:
59
return
60
- sessions = session_lists[0]
+ sessions = sessions_lists[0]
61
session_ids = [s["sessionId"] for s in sessions]
62
for session_id in session_ids:
63
session_time = "-".join(session_id.rsplit("-", 2)[-2:])
0 commit comments