Fix no space after end of line for multiline titles in changelog

This commit is contained in:
Kovid Goyal 2021-01-22 15:20:43 +05:30
parent bfc9a8d5c5
commit bff0582ec5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -103,7 +103,7 @@ def parse(raw, parse_dates=True):
if 'description' in item:
item['description'] += stripped_line + ' '
else:
item['title'] += stripped_line
item['title'] += ' ' + stripped_line
return in_item
state = normal