X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9a5423b58158ae6d970cdd7a3dc25e5559aa374a..0bcf3b50304dc2159e9005b78000f212edd2d4bf:/apps/pdcounter/models.py diff --git a/apps/pdcounter/models.py b/apps/pdcounter/models.py index 50eb43e1f..1e441ac64 100644 --- a/apps/pdcounter/models.py +++ b/apps/pdcounter/models.py @@ -91,13 +91,8 @@ class BookStub(models.Model): if not settings.NO_SEARCH_INDEX: def update_index(sender, instance, **kwargs): import search - print "update pd index %s [update %s]" % (instance, 'created' in kwargs) idx = search.Index() - idx.open() - try: - idx.index_tags(instance, remove_only=not 'created' in kwargs) - finally: - idx.close() + idx.index_tags(instance, remove_only=not 'created' in kwargs) post_delete.connect(update_index, Author) post_delete.connect(update_index, BookStub)