Skip to content

Commit

Permalink
Fix another typo
Browse files Browse the repository at this point in the history
Introduced in commit 70c7f03 .
  • Loading branch information
nsoranzo committed Oct 19, 2023
1 parent 7323103 commit a56a475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tool_shed/test/base/twilltestcase.py
Original file line number Diff line number Diff line change
Expand Up @@ -2092,7 +2092,7 @@ def get_installed_repository(session, name, owner, changeset):
if owner is not None:
stmt = stmt.where(ToolShedRepository.owner == owner)
if changeset is not None:
stmt = stmt.wehre(ToolShedRepository.changeset_revision == changeset)
stmt = stmt.where(ToolShedRepository.changeset_revision == changeset)
stmt = stmt.where(ToolShedRepository.deleted == false())
stmt = stmt.where(ToolShedRepository.uninstalled == false())
return session.scalars(stmt).one_or_none()

0 comments on commit a56a475

Please sign in to comment.