Skip to content

Commit a048dd8

Browse files
authored
Fix release notes generator to format previous date properly (#453)
1 parent a168631 commit a048dd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release_notes_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def update_release_notes(release_notes):
132132
history = history_file.read()
133133

134134
token = '# History\n\n'
135-
split_index = history.find(token) + len(token) + 1
135+
split_index = history.find(token) + len(token)
136136
header = history[:split_index]
137137
new_notes = f'{header}{release_notes}{history[split_index:]}'
138138

0 commit comments

Comments
 (0)