mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Update client/ayon_core/plugins/publish/collect_otio_review.py
Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
parent
41739bdb0b
commit
0293d74618
1 changed files with 5 additions and 4 deletions
|
|
@ -55,10 +55,11 @@ class CollectOtioReview(pyblish.api.InstancePlugin):
|
|||
|
||||
# loop all tracks and match with name in `reviewTrack`
|
||||
for track in otio_timeline.tracks:
|
||||
if (
|
||||
review_track_name is None
|
||||
or review_track_name != track.name
|
||||
):
|
||||
# Skip the loop
|
||||
if review_track_name is None:
|
||||
break
|
||||
|
||||
if review_track_name != track.name:
|
||||
continue
|
||||
|
||||
# process correct track
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue