django-endless-pagination
django-endless-pagination copied to clipboard
RemovedInDjango19Warning
RemovedInDjango19Warning: django.utils.importlib will be removed in Django 1.9.
endless_pagination/loaders.py
Solution:
try:
from importlib import import_module
except ImportError:
# Django < 1.9 and Python < 2.7
from django.utils.importlib import import_module
Is the project alive, and should we wait for fix, or move to another pagination library?
+1
+1. Can't upgrade to Django 1.9.
try my app https://github.com/shtalinberg/django-el-pagination
+1
Local fix is to replace from django.utils.importlib import import_module
with from importlib import import_module
in /path/to/your/pythonX.X/site_packages/endless_pagination/loaders.py
. Works as long as you are running Python2.7 or later. Sources - Django 1.9 Deprecation Info & Django 1.7 Release Notes.