pep8
[django-migdal.git] / migdal / search_indexes.py
index d809e7b..7c2ba7f 100644 (file)
@@ -1,4 +1,7 @@
-import datetime
+# -*- coding: utf-8 -*-
+# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
 from django.conf import settings
 from haystack import indexes
 from fnpdjango.utils.models.translation import add_translatable_index, localize_field
 from django.conf import settings
 from haystack import indexes
 from fnpdjango.utils.models.translation import add_translatable_index, localize_field
@@ -6,7 +9,8 @@ from migdal.models import Entry
 
 
 class EntryIndex(indexes.SearchIndex, indexes.Indexable):
 
 
 class EntryIndex(indexes.SearchIndex, indexes.Indexable):
-    text = indexes.CharField(null=True,
+    text = indexes.CharField(
+        null=True,
         model_attr=localize_field('body', settings.LANGUAGE_CODE),
         document=True)
     date = indexes.DateTimeField(indexed=True, model_attr="date")
         model_attr=localize_field('body', settings.LANGUAGE_CODE),
         document=True)
     date = indexes.DateTimeField(indexed=True, model_attr="date")