mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
fix regex escape sequence
This commit is contained in:
parent
502198d00b
commit
4d252b698a
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ def get_fusion_version(app_data):
|
|||
if not app_data:
|
||||
return
|
||||
|
||||
app_version_candidates = re.findall("\d+", app_data)
|
||||
app_version_candidates = re.findall(r"\d+", app_data)
|
||||
for app_version in app_version_candidates:
|
||||
if int(app_version) in FUSION_VERSIONS_DICT:
|
||||
return int(app_version)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue