Fundraising in PDF.
[wolnelektury.git] / src / catalogue / migrations / 0016_auto_20171031_1232.py
index 5892a29..81ddeef 100644 (file)
@@ -1,6 +1,6 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
+#
 from django.db import migrations, models
 
 
@@ -12,7 +12,7 @@ def refresh_books(apps, schema_editor):
         book.cached_author = ', '.join(
             TagRelation.objects.filter(content_type__model='book', object_id=book.id, tag__category='author')
             .values_list('tag__name', flat=True))
-        book.has_audience = 'audience' in book.extra_info
+        book.has_audience = 'audience' in book.get_extra_info_json()
         book.save()