mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 13:52:15 +01:00
fix key query
This commit is contained in:
parent
21ba1896a2
commit
4408137bde
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ def get_pype_attr(session, split_hierarchical=True, query_keys=None):
|
|||
"select {}"
|
||||
" from CustomAttributeConfiguration"
|
||||
" where group.name in (\"avalon\", \"{}\")"
|
||||
).format(join_query_keys(query_keys), CUST_ATTR_GROUP)
|
||||
).format(", ".join(query_keys), CUST_ATTR_GROUP)
|
||||
all_avalon_attr = session.query(cust_attrs_query).all()
|
||||
for cust_attr in all_avalon_attr:
|
||||
if split_hierarchical and cust_attr["is_hierarchical"]:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue