Skip to content

Commit f9d7dbe

Browse files
authored
Merge pull request #11 from ynput/enhancement/dont-set-ftrack-family
Review: Don't add ftrack family
2 parents 6a46394 + 5137b8d commit f9d7dbe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

client/ayon_harmony/plugins/publish/collect_instances.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class CollectInstances(pyblish.api.ContextPlugin):
2020
order = pyblish.api.CollectorOrder
2121
hosts = ["harmony"]
2222
product_type_mapping = {
23-
"render": ["review", "ftrack"],
23+
"render": ["review"],
2424
"harmony.template": [],
25-
"palette": ["palette", "ftrack"]
25+
"palette": ["palette"]
2626
}
2727

2828
pair_media = True
@@ -70,7 +70,7 @@ def process(self, context):
7070
families.extend(self.product_type_mapping[product_type])
7171
instance.data["families"] = families
7272

73-
# If set in plugin, pair the scene Version in ftrack with
73+
# If set in plugin, pair the scene Version with
7474
# thumbnails and review media.
7575
if (self.pair_media and product_type == "scene"):
7676
context.data["scene_instance"] = instance

client/ayon_harmony/plugins/publish/validate_scene_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def process(self, instance):
9999
expected_settings.pop('frameStartHandle', None)
100100
expected_settings.pop('frameEndHandle', None)
101101

102-
# handle case where ftrack uses only two decimal places
102+
# handle case when fps uses only two decimal places
103103
# 23.976023976023978 vs. 23.98
104104
fps = instance.context.data.get("frameRate")
105105
if isinstance(instance.context.data.get("frameRate"), float):

0 commit comments

Comments
 (0)