mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix no space after end of line for multiline titles in changelog
This commit is contained in:
parent
bfc9a8d5c5
commit
bff0582ec5
@ -103,7 +103,7 @@ def parse(raw, parse_dates=True):
|
|||||||
if 'description' in item:
|
if 'description' in item:
|
||||||
item['description'] += stripped_line + ' '
|
item['description'] += stripped_line + ' '
|
||||||
else:
|
else:
|
||||||
item['title'] += stripped_line
|
item['title'] += ' ' + stripped_line
|
||||||
return in_item
|
return in_item
|
||||||
|
|
||||||
state = normal
|
state = normal
|
||||||
|
Loading…
x
Reference in New Issue
Block a user