aboutsummaryrefslogtreecommitdiff
path: root/releng
diff options
context:
space:
mode:
authorAlois Wohlschlager <alois1@gmx-topmail.de>2024-07-13 15:38:07 +0200
committeralois31 <alois1@gmx-topmail.de>2024-07-17 22:12:41 +0000
commit72db9cd67b83c44f1dfcc157edea59d238b924d9 (patch)
treec4bfbdfd0a6072ec97aec53278fd052b9f0ba590 /releng
parent67f62bcdb4fa2808f44883deffa144e59eb34473 (diff)
doc/release-notes: link the upcoming release notes again
The insertion marker comment broke the list into two parts, the first containing only the link to the upcoming release notes and the second the past releases. This confused the generator, leading to the first part being discarded. Indent the marker comment so that it's syntactically part of the preceding item, and in particular doesn't split the list any more. Change-Id: I357c51bb03e4e0d79a76d30158615fd9eda95ea8
Diffstat (limited to 'releng')
-rw-r--r--releng/release_notes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/releng/release_notes.py b/releng/release_notes.py
index 0861e8d4e..a7fd64b08 100644
--- a/releng/release_notes.py
+++ b/releng/release_notes.py
@@ -16,7 +16,7 @@ def add_to_summary(date: str):
if VERSION_RL.exists():
return
- MARKER = '<!-- RELENG-AUTO-INSERTION-MARKER'
+ MARKER = ' <!-- RELENG-AUTO-INSERTION-MARKER'
new_lines = []
for line in SUMMARY.read_text().splitlines():