diff options
Diffstat (limited to 'ci/parse_relnotes.py')
-rw-r--r-- | ci/parse_relnotes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/parse_relnotes.py b/ci/parse_relnotes.py index deebae5d..df83818a 100644 --- a/ci/parse_relnotes.py +++ b/ci/parse_relnotes.py @@ -74,7 +74,7 @@ def sections(parsed_data): elif ttype == "text": text.append(ttext) else: - raise Exception(f"Don't know ttype {ttype!r}") + raise RuntimeError(f"Don't know ttype {ttype!r}") yield (*header, "\n".join(text)) |