Skip to content
Snippets Groups Projects
Commit fa47f0f5 authored by Dylan Baker's avatar Dylan Baker
Browse files

bin/gen_release_notes.py: Return "None" if there are no new features


Which is very likely .Z > 0 releases.

Fixes: 86079447
       ("scripts: Add a gen_release_notes.py script")
Reviewed-by: Eric Engestrom's avatarEric Engestrom <eric@engestrom.ch>
Reviewed-by: default avatarJuan A. Suarez <jasuarez@igalia.com>
(cherry picked from commit c6d41e7f)
parent 70145746
No related branches found
No related tags found
No related merge requests found
......@@ -224,6 +224,8 @@ def get_features() -> typing.Generator[str, None, None]:
with p.open('rt') as f:
for line in f:
yield line
else:
yield "None"
async def main() -> None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment