From a1d7773165b1147cc62fadeae88d9d420cd5f54b Mon Sep 17 00:00:00 2001 From: ChristopheSeux Date: Thu, 19 Oct 2023 12:08:14 +0200 Subject: [PATCH] fix export edl and upload to kitsu --- operators/exports.py | 2 +- operators/tracker.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/operators/exports.py b/operators/exports.py index ff071f4..3ad5946 100644 --- a/operators/exports.py +++ b/operators/exports.py @@ -176,7 +176,7 @@ class VSETB_OT_export_edl(Operator): for strip in get_strips(channel='Shots', selected_only=False): strip_data = {**format_data, **strip.vsetb_strip_settings.format_data} - strip_render_path = project.render_strip_template.format(**strip_data) + strip_render_path = project.render_video_strip_template.format(**strip_data) clip = Clip(Path(strip_render_path).name) diff --git a/operators/tracker.py b/operators/tracker.py index 8046783..996a980 100644 --- a/operators/tracker.py +++ b/operators/tracker.py @@ -355,7 +355,7 @@ class VSETB_OT_upload_to_tracker(Operator): if self.add_preview: strip_data = {**format_data, **strip_settings.format_data} - preview = project.render_strip_template.format(**strip_data) + preview = project.render_video_strip_template.format(**strip_data) preview = Path(os.path.abspath(bpy.path.abspath(preview))) #print(preview) if not preview.exists():