From 07ebf273c13768fe4f4b968e0211a090118d7556 Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Wed, 18 Aug 2021 18:21:33 +0200 Subject: [PATCH] format command --- .../hosts/maya/plugins/publish/extract_xgen_cache.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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)