Skip to content

Commit db606e4

Browse files
committed
Fix release-script for 3.14.
[nocoverage] [noissue]
1 parent 8bb92bc commit db606e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/scripts/release.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ def create_tag_and_build_package(repo, desired_tag, commit_sha, plugin_path):
122122
tag = existing_tag
123123
else:
124124
raise RuntimeError(
125-
"The '{desired_tag}' tag already exists, but the commit sha does not match "
126-
"'{commit_sha}'."
125+
f"The '{desired_tag}' tag already exists, but the commit sha does not match "
126+
f"'{commit_sha}'."
127127
)
128128

129129
# Create a tag if one does not exist
@@ -138,7 +138,7 @@ def create_tag_and_build_package(repo, desired_tag, commit_sha, plugin_path):
138138
loop = asyncio.get_event_loop() # noqa
139139
# fmt: off
140140
package_found = asyncio.run(
141-
get_package_from_pypi("pulpcore=={tag.name}", plugin_path)
141+
get_package_from_pypi(f"pulpcore=={tag.name}", plugin_path)
142142
) # noqa
143143
# fmt: on
144144
if not package_found:

0 commit comments

Comments
 (0)