diff --git a/server_addon/maya/client/ayon_maya/plugins/publish/collect_yeti_rig.py b/server_addon/maya/client/ayon_maya/plugins/publish/collect_yeti_rig.py index fa09e60d45..6ec691d156 100644 --- a/server_addon/maya/client/ayon_maya/plugins/publish/collect_yeti_rig.py +++ b/server_addon/maya/client/ayon_maya/plugins/publish/collect_yeti_rig.py @@ -284,8 +284,9 @@ class CollectYetiRig(plugin.MayaInstancePlugin): files, patterns=[clique.PATTERNS["frames"]], minimum_items=1) - - return collection + files = [texture for texture_collection in collection + for texture in texture_collection] + return files def _replace_tokens(self, strings): env_re = re.compile(r"\$\{(\w+)\}")