bugfix: arreglo concatenacion de lineas de changelog

This commit is contained in:
jt
2025-11-02 13:59:55 -03:00
parent 9042cb7b50
commit 8f30dc640f
+1 -1
View File
@@ -531,7 +531,7 @@ def get_changelog_footer_lines():
def generate_changelog_entry(branch: str, target: str): def generate_changelog_entry(branch: str, target: str):
entry_lines = get_changelog_header_lines(branch) entry_lines = get_changelog_header_lines(branch)
entry_lines = get_changelog_content_lines(target) entry_lines += get_changelog_content_lines(target)
entry_lines += get_changelog_footer_lines() entry_lines += get_changelog_footer_lines()
return "\n".join(entry_lines) return "\n".join(entry_lines)