mark 'newAssetPublishing' as deprecated since 24/06/06

This commit is contained in:
Jakub Trllo 2024-06-06 17:34:46 +02:00
parent cfe6ae1c67
commit 4cbbe322b5
8 changed files with 10 additions and 10 deletions

View file

@ -677,7 +677,7 @@ or updating already created. Publishing will create OTIO file.
"variant": variant_name,
"task": None,
"newHierarchyIntegration": True,
# Backwards compatible
# Backwards compatible (Deprecated since 24/06/06)
"newAssetPublishing": True,
"trackStartFrame": track_start_frame,
"timelineOffset": timeline_offset,

View file

@ -30,7 +30,7 @@ class CollectSequenceFrameData(
# editorial would fail since they might not be in database yet
new_hierarchy = (
instance.data.get("newHierarchyIntegration")
# Backwards compatible
# Backwards compatible (Deprecated since 24/06/06)
or instance.data.get("newAssetPublishing")
)
if new_hierarchy:

View file

@ -35,7 +35,7 @@ class ValidateFrameRange(OptionalPyblishPluginMixin,
# editorial would fail since they might not be in database yet
new_hierarchy = (
instance.data.get("newHierarchyIntegration")
# Backwards compatible
# Backwards compatible (Deprecated since 24/06/06)
or instance.data.get("newAssetPublishing")
)
if new_hierarchy: