mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
bugfix/OP-3356_Maya-Review-Image-plane-attribute
This commit is contained in:
parent
5d0108f21b
commit
84eb91acb7
1 changed files with 5 additions and 1 deletions
|
|
@ -116,7 +116,11 @@ class ExtractThumbnail(openpype.api.Extractor):
|
|||
path = capture.capture(**preset)
|
||||
playblast = self._fix_playblast_output_path(path)
|
||||
|
||||
_, thumbnail = os.path.split(playblast)
|
||||
image_plane = instance.data.get("imagePlane")
|
||||
if image_plane:
|
||||
_, thumbnail = os.path.split(playblast)
|
||||
else:
|
||||
return
|
||||
|
||||
self.log.info("file list {}".format(thumbnail))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue