We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a190e6 commit a6f105fCopy full SHA for a6f105f
src/tools_manager.py
@@ -79,7 +79,7 @@ def git_get_latest_tag(self, git_dir: str):
79
logging.error(error_message)
80
return None
81
82
- tags = response.stdout.decode("utf-8").split("\n")
+ tags = response.stdout.strip().decode("utf-8").split("\n")
83
for tag in tags:
84
try:
85
semver.parse(tag.strip("v"))
0 commit comments