From 363dca104cb44ae0384d8d0eeca36effdd86900e Mon Sep 17 00:00:00 2001 From: Tomi Poveda Date: Sat, 23 Nov 2019 20:41:12 +0100 Subject: [PATCH] Updated call to capture scene to accept keyword arguments --- artellapipe/dccs/maya/managers/playblasts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artellapipe/dccs/maya/managers/playblasts.py b/artellapipe/dccs/maya/managers/playblasts.py index 1cb8e2d..68aaee6 100644 --- a/artellapipe/dccs/maya/managers/playblasts.py +++ b/artellapipe/dccs/maya/managers/playblasts.py @@ -55,7 +55,7 @@ def parse_current_scene(self): 'sound': maya.cmds.timeControl(time_control, query=True, sound=True) or None } - def capture_scene(self, options): + def capture_scene(self, **options): path = super(MayaPlayblastsManager, self).capture_scene(options=options) path = playblast.fix_playblast_output_path(path)