Skip to content

Commit

Permalink
Correct condition exception
Browse files Browse the repository at this point in the history
Co-authored-by: Staci Mullins <[email protected]>
  • Loading branch information
AetherUnbound and stacimc authored Jun 2, 2023
1 parent 2c00b15 commit ee90144
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def get_latest_api_package_version(github: GitHubAPI = None) -> str:
log.info(f"Found latest version: {latest_version}")
if not ("latest" in tags or latest_version.startswith("rel-")):
raise ValueError(
f"Latest version is not a release and not marked with 'latest': "
f"Latest version is not a release or not marked with 'latest': "
f"{latest_version}"
)

Expand Down

0 comments on commit ee90144

Please sign in to comment.