fixed typo

This commit is contained in:
iLLiCiTiT 2020-11-12 09:43:16 +01:00
parent dfece60dbc
commit 0bfe5b6e61

View file

@ -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)