Skip to content

Commit

Permalink
Fix another typo
Browse files Browse the repository at this point in the history
Introduced in commit 68831dd .
  • Loading branch information
nsoranzo committed Oct 19, 2023
1 parent a56a475 commit 5858482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tool_shed/metadata/repository_metadata_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ def get_current_repositories(session, order=False):


def get_filtered_repositories(session, repo_ids, order):
stmt = select(Repository).where(Repository.in_(repo_ids))
stmt = select(Repository).where(Repository.id.in_(repo_ids))
if order:
stmt = stmt.order_by(Repository.name, Repository.user_id)
return session.scalars(stmt)

0 comments on commit 5858482

Please sign in to comment.