Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1243 from pypeclub/feature/forward_compatible_ftr…
Browse files Browse the repository at this point in the history
…ack_group

Forward compatible ftrack group
  • Loading branch information
mkolar authored Apr 7, 2021
2 parents 8fef446 + bda4ba8 commit 747db6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pype/modules/ftrack/lib/avalon_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def get_pype_attr(session, split_hierarchical=True):
cust_attrs_query = (
"select id, entity_type, object_type_id, is_hierarchical, default"
" from CustomAttributeConfiguration"
" where group.name in (\"avalon\", \"pype\")"
" where group.name in (\"avalon\", \"pype\", \"openpype\")"
)
all_avalon_attr = session.query(cust_attrs_query).all()
for cust_attr in all_avalon_attr:
Expand Down
2 changes: 1 addition & 1 deletion pype/plugins/ftrack/publish/integrate_hierarchy_ftrack.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_pype_attr(session, split_hierarchical=True):
cust_attrs_query = (
"select id, entity_type, object_type_id, is_hierarchical, default"
" from CustomAttributeConfiguration"
" where group.name in (\"avalon\", \"pype\")"
" where group.name in (\"avalon\", \"pype\", \"openpype\")"
)
all_avalon_attr = session.query(cust_attrs_query).all()
for cust_attr in all_avalon_attr:
Expand Down

0 comments on commit 747db6e

Please sign in to comment.