Fix crash due to relations not supporting is_

This commit is contained in:
rubenwardy
2023-03-18 23:20:09 +00:00
parent 7eca06a097
commit fb13272e6c
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@ def tags():
only_no_tags = isYes(request.args.get("no_tags"))
if only_no_tags:
query = query.filter(Package.tags.is_(None))
query = query.filter(Package.tags==None)
tags = Tag.query.order_by(db.asc(Tag.title)).all()