diff --git a/git-flow b/git-flow index c556954..3e49964 100755 --- a/git-flow +++ b/git-flow @@ -531,7 +531,7 @@ def get_changelog_footer_lines(): def generate_changelog_entry(branch: str, target: str): 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() return "\n".join(entry_lines)