1👍
The django.db.model.get_model
is not available any longer in 1.9, so None
is returned when calling django.db.models.get_model
, but in the more recent commit (from the 3rd of January) the utils.app_loading.py
is used to either use the django.apps.apps.get_model
when using Django 1.7 or higher, otherwise the old django.db.models._get_models
is used.
So, best to upgrade to the latest development version git+https://github.com/django-haystack/django-haystack.git
.
Source:stackexchange.com