mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #285 from ynput/enhancement/fix-typo-in-tag-name
Chore: Tag 'reformatted' typo fix
This commit is contained in:
commit
85e58545af
2 changed files with 6 additions and 2 deletions
|
|
@ -904,7 +904,7 @@ class ExporterReviewMov(ExporterReview):
|
|||
node, product_name, "Reposition node... `{}`"
|
||||
)
|
||||
# append reformatted tag
|
||||
add_tags.append("reformated")
|
||||
add_tags.append("reformatted")
|
||||
|
||||
# only create colorspace baking if toggled on
|
||||
if bake_viewer_process:
|
||||
|
|
|
|||
|
|
@ -1225,7 +1225,11 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
filters = []
|
||||
|
||||
# if reformat input video file is already reforamted from upstream
|
||||
reformat_in_baking = bool("reformated" in new_repre["tags"])
|
||||
reformat_in_baking = (
|
||||
"reformatted" in new_repre["tags"]
|
||||
# Backwards compatibility
|
||||
or "reformated" in new_repre["tags"]
|
||||
)
|
||||
self.log.debug("reformat_in_baking: `{}`".format(reformat_in_baking))
|
||||
|
||||
# NOTE Skipped using instance's resolution
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue