Skip to content

Commit

Permalink
fixup! tools/gitlog2changelog.py.in: cosmetic fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Klimov <[email protected]>
  • Loading branch information
jimklimov committed Jul 16, 2024
1 parent f34439b commit fab189c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tools/gitlog2changelog.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,14 @@ for line in fin:
continue
# Extract the actual commit message for this commit
elif authorFound and dateFound and messageFound is False:
# Find the commit message if we can
# Find the commit message if we can (including the optional
# details after the title and a blank line)
# FIXME: Detect end of message by /^#/ to allow for longer essays
# in the detailed comments part?
# FIXME: Some such comments include asciidoc-ish markup, notably
# bullet lists - do not concatenate those into one block but do
# actually pass them as sub-lists (indented, and perhaps not
# starting with an asterisk which we use for this document).
if len(line) == fin_chop:
if messageNL:
messageFound = True
Expand Down

0 comments on commit fab189c

Please sign in to comment.