Skip to content

Commit

Permalink
Merge pull request #3942 from BigRoy/maya_yeti_fix_load_cache_frame
Browse files Browse the repository at this point in the history
  • Loading branch information
mkolar committed Oct 10, 2022
2 parents 5a83c02 + 7d2a6bf commit b84d684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/hosts/maya/plugins/load/load_yeti_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def get_cache_node_filepath(self, root, node_name):
"""

name = node_name.replace(":", "_")
pattern = r"^({name})(\.[0-4]+)?(\.fur)$".format(name=re.escape(name))
pattern = r"^({name})(\.[0-9]+)?(\.fur)$".format(name=re.escape(name))

files = [fname for fname in os.listdir(root) if re.match(pattern,
fname)]
Expand Down

0 comments on commit b84d684

Please sign in to comment.