diff --git a/files/routes/static.py b/files/routes/static.py index 5a3caa853..572ca7e62 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -344,7 +344,7 @@ def blocks(v): blocks = g.db.query(UserBlock).options( joinedload(UserBlock.user), joinedload(UserBlock.target), - ).order_by(UserBlock.created_utc.desc()).all() + ).order_by(UserBlock.created_utc.desc()) return render_template("blocks.html", v=v, blocks=blocks)