From 0bfe5b6e61b90acbbdd71a59dfd6ca4c75ae7af8 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 12 Nov 2020 09:43:16 +0100 Subject: [PATCH] fixed typo --- pype/plugins/tvpaint/publish/collect_workfile_data.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pype/plugins/tvpaint/publish/collect_workfile_data.py b/pype/plugins/tvpaint/publish/collect_workfile_data.py index b27eb2f693..31fd97ced4 100644 --- a/pype/plugins/tvpaint/publish/collect_workfile_data.py +++ b/pype/plugins/tvpaint/publish/collect_workfile_data.py @@ -50,7 +50,7 @@ class CollectWorkfileData(pyblish.api.ContextPlugin): if frame_end > last_frame: last_frame = frame_end - sceme_data = { + scene_data = { "currentFile": workfile_path, "sceneWidth": width, "sceneHeight": height, @@ -61,6 +61,6 @@ class CollectWorkfileData(pyblish.api.ContextPlugin): "fieldOrder": field_order } self.log.debug( - "Scene data: {}".format(json.dumps(sceme_data, indent=4)) + "Scene data: {}".format(json.dumps(scene_data, indent=4)) ) - context.data.update(sceme_data) + context.data.update(scene_data)