mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
Account for "create_first_version" setting.
This commit is contained in:
parent
f4117a7a5c
commit
fa73bbb568
1 changed files with 3 additions and 1 deletions
|
|
@ -477,7 +477,9 @@ class AbstractTemplateBuilder(object):
|
|||
create_first_version = template_preset["create_first_version"]
|
||||
|
||||
# check if first version is created
|
||||
created_version_workfile = self.create_first_workfile_version()
|
||||
created_version_workfile = False
|
||||
if create_first_version:
|
||||
created_version_workfile = self.create_first_workfile_version()
|
||||
|
||||
# if first version is created, import template
|
||||
# and populate placeholders
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue