From f3d7e02555426d25d53d544651c9730fdbe0ca41 Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Thu, 19 Aug 2021 16:43:44 +0200 Subject: [PATCH] Update openpype/hosts/maya/plugins/publish/extract_xgen_cache.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Ondřej Samohel <33513211+antirotor@users.noreply.github.com> --- openpype/hosts/maya/plugins/publish/extract_xgen_cache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpype/hosts/maya/plugins/publish/extract_xgen_cache.py b/openpype/hosts/maya/plugins/publish/extract_xgen_cache.py index b15c9decc2..d69911c404 100644 --- a/openpype/hosts/maya/plugins/publish/extract_xgen_cache.py +++ b/openpype/hosts/maya/plugins/publish/extract_xgen_cache.py @@ -19,8 +19,8 @@ class ExtractXgenCache(openpype.api.Extractor): def process(self, instance): # Collect the out set nodes - out_descriptions = [(node for node in instance - if cmds.nodeType(node) == "xgmSplineDescription")] + out_descriptions = [node for node in instance + if cmds.nodeType(node) == "xgmSplineDescription"] start = 1 end = 1