mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
OP-3908 - fix - wrong regex
This commit is contained in:
parent
73c6dc175e
commit
bc945e9c41
1 changed files with 1 additions and 1 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue