From 3e01b11c09c58858ce199a1a56d115c5f4d4daa3 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Fri, 7 Nov 2025 21:06:56 -0300 Subject: [PATCH] bugfix: arreglo parametro target a get_changelog_entry_lines --- src/git_flow/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git_flow/main.py b/src/git_flow/main.py index 4e72f84..b1f5dd5 100755 --- a/src/git_flow/main.py +++ b/src/git_flow/main.py @@ -598,7 +598,7 @@ def generate_changelog_entry(branch: str, target: str): def create_pull_request(service: str, repository: str, source: str, destination: str): endpoint = get_api_endpoint(service, repository, "/pullrequests") title = source.replace("/", ": ").replace("-", " ") - description = "\n".join(get_changelog_content_lines(destination)) + description = "\n".join(get_changelog_content_lines(source, destination)) headers = get_headers() json = {