Skip to content
Snippets Groups Projects
Commit 81c2ad85 authored by Tim Jaacks's avatar Tim Jaacks
Browse files

merge_into_manifest: fix error message if MR already exists

parent 6fbbf338
No related branches found
No related tags found
1 merge request!151merge_into_manifest: fix error message if MR already exists
Pipeline #18565 skipped with stages
...@@ -61,7 +61,7 @@ def merge_into_manifest( ...@@ -61,7 +61,7 @@ def merge_into_manifest(
manifest_project, integration_branch, target_branch manifest_project, integration_branch, target_branch
) )
if not created: if not created:
sys.exit("ERROR: There is already an open merge request:\n%s" % mrs[0].web_url) sys.exit("ERROR: There is already an open merge request:\n%s" % mr.web_url)
print("Created new merge request:") print("Created new merge request:")
print(mr.web_url) print(mr.web_url)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment