cyberdelia / manifesto

Pluggable cache manifest for Django

Home Page:https://manifesto.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ImportError: cannot import name importlib

sebastien247 opened this issue · comments

Error :

  File "/home/sebastien/.virtualenvs/x/local/lib/python2.7/site-packages/manifesto/__init__.py", line 6, in <module>
    from django.utils import importlib
ImportError: cannot import name importlib

django.utils.importlib was deprecated in Django 1.7 and removed in Django 1.9. Change imports from:

from django.utils import importlib
to
import importlib