raise explicit exception if EOF found when looking for changelog sections

This commit is contained in:
nickfyson 2023-12-18 10:08:49 +00:00
parent 0724061f76
commit 8e086df084

View file

@ -188,6 +188,8 @@ def process_changelog_for_backports(source_branch_major_version, target_branch_m
# until we find the first section, just duplicate all lines
while True:
line = f.readline()
if not line:
raise Exception('Could not find any change sections in CHANGELOG.md') # EOF
output += line
if line.startswith('## '):