fix haystack compatibility
[django-migdal.git] / migdal / search_indexes.py
index 7c2ba7f..d5b57c0 100644 (file)
@@ -19,7 +19,7 @@ class EntryIndex(indexes.SearchIndex, indexes.Indexable):
     def get_model(self):
         return Entry
 
-    def index_queryset(self):
+    def index_queryset(self, using=None):
         """Used when the entire index for model is updated."""
         return self.get_model().objects.all()