mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
hound(hiero): improving variable building
This commit is contained in:
parent
34b568304e
commit
61e703f13a
1 changed files with 6 additions and 1 deletions
|
|
@ -99,7 +99,12 @@ class ExtractReviewCutUp(pype.api.Extractor):
|
|||
index = 0
|
||||
for image in collection:
|
||||
dst_file_num = frame_start + index
|
||||
dst_file_name = str(event_number) + head + str(padding % dst_file_num) + tail
|
||||
dst_file_name = "".join([
|
||||
str(event_number),
|
||||
head,
|
||||
str(padding % dst_file_num),
|
||||
tail
|
||||
])
|
||||
src = os.path.join(staging_dir, image)
|
||||
dst = os.path.join(full_output_dir, dst_file_name)
|
||||
self.log.info("Creating temp hardlinks: {}".format(dst))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue