mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
jakub's comment
This commit is contained in:
parent
98065e09b4
commit
dd2255f8fd
1 changed files with 2 additions and 2 deletions
|
|
@ -808,8 +808,8 @@ class ExporterReviewMov(ExporterReview):
|
|||
filename = os.path.basename(self.path_in)
|
||||
self.file = filename
|
||||
if ".{}".format(self.ext) not in self.file:
|
||||
wrg_ext = filename.split(".")[-1]
|
||||
self.file = filename.replace(wrg_ext, self.ext)
|
||||
original_ext = filename.split(".")[-1]
|
||||
self.file = filename.replace(original_ext, self.ext)
|
||||
|
||||
self.path = os.path.join(
|
||||
self.staging_dir, self.file).replace("\\", "/")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue