diff --git a/tools/apertis-pkg-merge-upstream-to-downstreams b/tools/apertis-pkg-merge-upstream-to-downstreams index aca0aea9fdd2c7217820a9117b0e0e86deb5249d..d265bed359d3d30177644510ce008bd56a674c7d 100755 --- a/tools/apertis-pkg-merge-upstream-to-downstreams +++ b/tools/apertis-pkg-merge-upstream-to-downstreams @@ -117,7 +117,6 @@ def cancel_branch_context_pipeline(project_id, branch, token, project_url): try: res = urllib.request.urlopen(get_id_req) json_res = json.load(res) - print(json_res) latest_job_id = json_res["id"] except urllib.error.HTTPError as e: print("ERROR:", e.read().decode()) @@ -136,7 +135,6 @@ def cancel_branch_context_pipeline(project_id, branch, token, project_url): print(f"Canceling useless pipeline on {branch}") try: res = urllib.request.urlopen(cancel_req).read().decode("utf-8") - print(res) except urllib.error.HTTPError as e: print("ERROR:", e.read().decode())