-# -*- coding: utf-8 -*-
# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
objects = Collection.objects.all()
if len(objects) > 3:
- best = random.sample(objects, 3)
+ best = random.sample(list(objects), 3)
else:
best = objects