Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit dc901a8

Browse files
author
David Robertson
authored
Fix typo in release script (#14920)
* Fix typo in release script * Changelog
1 parent 871ff05 commit dc901a8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changelog.d/14920.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix typo in release script.

scripts-dev/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ def _upload(gh_token: Optional[str]) -> None:
438438
repo = get_repo_and_check_clean_checkout()
439439
tag = repo.tag(f"refs/tags/{tag_name}")
440440
if repo.head.commit != tag.commit:
441-
click.echo("Tag {tag_name} (tag.commit) is not currently checked out!")
441+
click.echo(f"Tag {tag_name} ({tag.commit}) is not currently checked out!")
442442
click.get_current_context().abort()
443443

444444
# Query all the assets corresponding to this release.

0 commit comments

Comments
 (0)