From dc9b0b71f3a35c240143d107b8054ee7e46da67b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20St=C4=99pniowski?= Date: Thu, 18 Sep 2008 02:25:37 +0200 Subject: [PATCH] Compatibility with Python 2.4. --- apps/catalogue/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/catalogue/views.py b/apps/catalogue/views.py index 2a826d95a..29063595c 100644 --- a/apps/catalogue/views.py +++ b/apps/catalogue/views.py @@ -109,7 +109,7 @@ def tagged_object_list(request, tags=''): model = models.Book shelf_is_set = (len(tags) == 1 and tags[0].category == 'set') - theme_is_set = any(tag.category == 'theme' for tag in tags) + theme_is_set = len([tag for tag in tags if tag.category == 'theme']) > 0 if theme_is_set: model = models.Fragment -- 2.20.1