diff --git a/openpype/hosts/maya/plugins/publish/extract_xgen_cache.py b/openpype/hosts/maya/plugins/publish/extract_xgen_cache.py index a0bfca902c..acea7fa382 100644 --- a/openpype/hosts/maya/plugins/publish/extract_xgen_cache.py +++ b/openpype/hosts/maya/plugins/publish/extract_xgen_cache.py @@ -50,7 +50,15 @@ class ExtractXgenCache(openpype.api.Extractor): with avalon.maya.suspended_refresh(): with avalon.maya.maintained_selection(): - command = ('-file ' + path + ' -df "ogawa" -fr ' + str(start) + ' ' + str(end) + ' -step 1 -mxf -wfw') + command = ( + '-file ' + + path + + ' -df "ogawa" -fr ' + + str(start) + + ' ' + + str(end) + + ' -step 1 -mxf -wfw' + ) for desc in out_descriptions: command += (" -obj " + desc) cmds.xgmSplineCache(export=True, j=command)