Merge pull request #2 from pypeclub/bugfix/burnins_templates

Burnin plugin fix
This commit is contained in:
clement 2021-11-14 21:59:18 +01:00 committed by GitHub
commit d6c8f59eba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -184,7 +184,9 @@ class ExtractBurnin(openpype.api.Extractor):
for key in self.positions:
value = burnin_def.get(key)
if value:
burnin_values[key] = value
burnin_values[key] = value.replace(
"{task}", "{task[name]}"
)
# Remove "delete" tag from new representation
if "delete" in new_repre["tags"]: