[Answered ]-Dojango with django 1.5

2👍

I found a similar issue. Try to find

from django.utils import simplejson as json

and replace it with

try:
    import json
except ImportError:
   from django.utils import simplejson as json

Leave a comment