mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Protect code for cases where 'Frames' key doesn't exist
This commit is contained in:
parent
0b811854ba
commit
f9dc9f8920
1 changed files with 1 additions and 1 deletions
|
|
@ -91,7 +91,7 @@ class ValidateExpectedFiles(pyblish.api.InstancePlugin):
|
|||
|
||||
for job_id in render_job_ids:
|
||||
job_info = self._get_job_info(job_id)
|
||||
frame_list = job_info["Props"]["Frames"]
|
||||
frame_list = job_info["Props"].get("Frames")
|
||||
if frame_list:
|
||||
all_frame_lists.extend(frame_list.split(','))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue