OP-3908 - fix - wrong regex

This commit is contained in:
Petr Kalis 2022-10-31 12:01:38 +01:00
parent 73c6dc175e
commit bc945e9c41

View file

@ -43,7 +43,7 @@ class CollectExtensionVersion(pyblish.api.ContextPlugin):
with open(manifest_url) as fp:
content = fp.read()
found = re.findall(r'(ExtensionBundleVersion=")([0-10\.]+)(")',
found = re.findall(r'(ExtensionBundleVersion=")([0-9\.]+)(")',
content)
if found:
expected_version = found[0][1]