From aa0ae99daa95c7a5b320914f4eb20e648db7123d Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Wed, 13 May 2020 11:33:03 +0200 Subject: [PATCH] fix(nks): plugin should be in extract order.. previous was for testing --- pype/plugins/nukestudio/publish/extract_review_cutup_video.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/plugins/nukestudio/publish/extract_review_cutup_video.py b/pype/plugins/nukestudio/publish/extract_review_cutup_video.py index 30225ae7f2..dd4fc0cfff 100644 --- a/pype/plugins/nukestudio/publish/extract_review_cutup_video.py +++ b/pype/plugins/nukestudio/publish/extract_review_cutup_video.py @@ -6,8 +6,8 @@ import pype class ExtractReviewCutUpVideo(pype.api.Extractor): """Cut up clips from long video file""" - # order = api.ExtractorOrder - order = api.CollectorOrder + 0.1023 + order = api.ExtractorOrder + # order = api.CollectorOrder + 0.1023 label = "Extract Review CutUp Video" hosts = ["nukestudio"] families = ["review"]