This commit is contained in:
2026-01-22 00:06:13 +08:00
parent f26fc95ea3
commit ed7476e54b
316 changed files with 4962 additions and 14039 deletions

View File

@@ -66,7 +66,7 @@ class SemanticVersion(Object):
result = pattern.match(stringVersion)
if result is None:
raise Exception("Invalid version string: '{0}'".format(stringVersion))
raise Exception("无效的版本字符串: '{0}'".format(stringVersion))
self.major = toInt(result.group(1))
self.minor = toInt(result.group(3))