mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
add comments
This commit is contained in:
parent
22ac8e7ac6
commit
a75e5d8db6
1 changed files with 5 additions and 0 deletions
|
|
@ -819,6 +819,11 @@ class ExporterReviewMov(ExporterReview):
|
|||
self.file = "{}{}.{}".format(
|
||||
self.fhead, self.name, self.ext)
|
||||
else:
|
||||
# Output is image (or image sequence)
|
||||
# When the file is an image it's possible it
|
||||
# has extra information after the `fhead` that
|
||||
# we want to preserve, e.g. like frame numbers
|
||||
# or frames hashes like `####`
|
||||
filename_no_ext = os.path.splitext(
|
||||
os.path.basename(self.path_in))[0]
|
||||
after_head = filename_no_ext[len(self.fhead):]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue