Skip to content

Commit a102c73

Browse files
committed
fix: print which tag is invalid
1 parent ffd60a0 commit a102c73

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

commitizen/tags.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,7 @@ def extract_version(self, tag: GitTag) -> Version:
146146
m for regex in self.version_regexes if (m := regex.fullmatch(tag.name))
147147
)
148148
if not (m := next(candidates, None)):
149-
regexes = ", ".join([str(r) for r in self.version_regexes])
150-
raise InvalidVersion(f"Invalid version tag: '{tag.name}' does not match any configured tag format: {regexes}")
149+
raise InvalidVersion(f"Invalid version tag: '{tag.name}' does not match any configured tag format")
151150
if "version" in m.groupdict():
152151
return self.scheme(m.group("version"))
153152

0 commit comments

Comments
 (0)