MINOR: fix syntax error in release.py (#15350)

Co-authored-by: Matthias Berndt <matthias.berndt@ttmzero.com>

Reviewers: Divij Vaidya <diviv@amazon.com>
This commit is contained in:
Matthias Berndt 2024-02-12 12:34:57 +01:00 committed by GitHub
parent 11f37b4d73
commit b9f1d59268
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -749,7 +749,7 @@ try:
print(f"In order to restart the workflow, you will have to manually switch back to the original branch and delete the branch {release_version} and tag {rc_tag}")
sys.exit(1)
except Exception as e:
print(f"Failed when trying to git push {rc_tag}. Error: {e}"
print(f"Failed when trying to git push {rc_tag}. Error: {e}")
print("You may need to clean up branches/tags yourself before retrying.")
print("Due the failure of git push, the program will exit here. Please note that: ")
print(f"1) You are still at branch {release_version}, not {starting_branch}")