Skip to content

Commit

Permalink
Fix use of .table for RepositoryRoleAssociation
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Jan 23, 2024
1 parent 5be1da5 commit 7a8f00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tool_shed/grids/repository_grids.py
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ def build_initial_query(self, trans, **kwd):
return (
trans.sa_session.query(model.Repository)
.filter(model.Repository.table.c.deleted == false())
.outerjoin(model.RepositoryRoleAssociation.table)
.outerjoin(model.RepositoryRoleAssociation)
.outerjoin(model.Role.table)
.filter(or_(*clause_list))
.join(model.User.table)
Expand Down

0 comments on commit 7a8f00c

Please sign in to comment.