mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
Harmon to Deadline - fix for 17
It seems that Harmony 17 needs at least one '.' in file_prefix. Cannot be last character though!
This commit is contained in:
parent
3b93fae6f7
commit
19a91b9ea7
1 changed files with 2 additions and 3 deletions
|
|
@ -77,10 +77,9 @@ class CollectFarmRender(pype.lib.abstract_collect_render.
|
|||
# is sequence start node on write node offsetting whole sequence?
|
||||
expected_files = []
|
||||
|
||||
# remove last char if last character of file prefix is a number
|
||||
# Harmony 17 needs at least one '.' in file_prefix, but not at end
|
||||
file_prefix = info[0]
|
||||
while not str.isalpha(file_prefix[-1]):
|
||||
file_prefix = file_prefix[:-1]
|
||||
file_prefix += '.temp'
|
||||
|
||||
for frame in range(start, end):
|
||||
expected_files.append(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue