-# -*- 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.
#
verbose_name_plural = _('sources')
app_label = 'catalogue'
- def __unicode__(self):
+ def __str__(self):
return self.netloc
def save(self, *args, **kwargs):
for book in Book.objects.all():
source = book.extra_info.get('source_url', '')
if self.netloc in source or (old_netloc != self.netloc and old_netloc in source):
- book.flush_includes()
+ book.clear_cache()
return ret