mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
Merge pull request #2 from pypeclub/bugfix/burnins_templates
Burnin plugin fix
This commit is contained in:
commit
d6c8f59eba
1 changed files with 3 additions and 1 deletions
|
|
@ -184,7 +184,9 @@ class ExtractBurnin(openpype.api.Extractor):
|
||||||
for key in self.positions:
|
for key in self.positions:
|
||||||
value = burnin_def.get(key)
|
value = burnin_def.get(key)
|
||||||
if value:
|
if value:
|
||||||
burnin_values[key] = value
|
burnin_values[key] = value.replace(
|
||||||
|
"{task}", "{task[name]}"
|
||||||
|
)
|
||||||
|
|
||||||
# Remove "delete" tag from new representation
|
# Remove "delete" tag from new representation
|
||||||
if "delete" in new_repre["tags"]:
|
if "delete" in new_repre["tags"]:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue