Error:
from django.utils import simplejson
ImportError: cannot import name simplejson
Fix:
Use json module
import json as simplejson
from django.utils import simplejson
ImportError: cannot import name simplejson
Fix:
Use json module
import json as simplejson
No comments:
Post a Comment