Skip to content

Commit

Permalink
Merge pull request #17446 from jdavcs/23.0_truebug
Browse files Browse the repository at this point in the history
[23.0] Fix bug: true >> True
  • Loading branch information
mvdbeek authored Feb 9, 2024
2 parents 4c1c8e2 + c1f0aad commit bed5c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/managers/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def name_filter(term):
query = query.filter(model.StoredWorkflow.published == true())
elif q == "deleted":
query = query.filter(model.StoredWorkflow.deleted == true())
show_deleted = true
show_deleted = True
elif q == "shared_with_me":
if not show_shared:
message = "Can only use tag is:shared_with_me if show_shared parameter also true."
Expand Down

0 comments on commit bed5c5e

Please sign in to comment.