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 a8bf7bb commit 30b0babCopy full SHA for 30b0bab
lib/dir_listing.py
@@ -63,9 +63,9 @@ def fetch_summary(meeting):
63
session_md = session_md.replace(f"# {wgname.upper()}", "")
64
summary.append(session_md)
65
summary_md = "\n\n".join(summary)
66
- with open(f"{dir_.name}/summary.md", 'w') as fh:
+ with open(f"{meeting}/summary.md", 'w') as fh:
67
fh.write(summary_md)
68
- return f"[summary]({dir_.name}/summary.md)"
+ return f"[summary]({meeting}/summary.md)"
69
return None
70
71
def filter_thing(thing):
0 commit comments