Skip to content

Commit d37be8c

Browse files
committed
rework headers
1 parent 0858694 commit d37be8c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/dir_listing.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
wgname = "httpbis"
1313

1414
summary_header = f"""
15-
# Meeting Summary for {wgname}
16-
1715
**NOTE**: this is a non-normative, AI-generated summary supplied only for convenience; it does not necessarily represent an accurate record of the meeting. See the minutes for the authoriative record. See [the source](https://ietfminutes.org/) for more information.
1816
"""
1917

@@ -61,7 +59,7 @@ def fetch_summary(meeting):
6159
session_ids = [s["sessionId"] for s in sessions]
6260
for session_id in session_ids:
6361
session_time = "-".join(session_id.rsplit("-", 2)[-2:])
64-
summary.append(f"# Session: {session_time}")
62+
summary.append(f"# Session Summary: {session_time}")
6563
with open(f"{auto_minutes_path}/{meeting}/{session_id}", "r") as fh:
6664
session_md = fh.read()
6765
session_md = session_md.replace(f"# {wgname.upper()}", "")

0 commit comments

Comments
 (0)