added warning message

This commit is contained in:
iLLiCiTiT 2020-11-11 17:00:41 +01:00
parent 555c9382e7
commit 601700e1ca

View file

@ -318,6 +318,12 @@ class ExtractSequence(pyblish.api.Extractor):
previous_frame_filepath = filepaths_by_frame[frame]
continue
elif previous_frame_filepath is None:
self.log.warning(
"No frames to fill. Seems like nothing was exported."
)
break
if output_dir is None:
output_dir = os.path.dirname(previous_frame_filepath)