django-admin-shortcuts raises an ImportError in Django 1.9 because django.utils.importlib has been deprecated in 1.9. We are supposed to use importlib from the standard library. I left the other imports in there as a fallback because importlib is only available in Python 2.7 and above. But according to setup.py Python 2.6 should also be supported.
django-admin-shortcuts raises an ImportError in Django 1.9 because
django.utils.importlib
has been deprecated in 1.9. We are supposed to useimportlib
from the standard library. I left the other imports in there as a fallback becauseimportlib
is only available in Python 2.7 and above. But according tosetup.py
Python 2.6 should also be supported.