Great plugin, but you must be aware that it needs:
** python 2.6 or above
As a workaround, replace in view.py the following lines:
try:
import simplejson as json
except ImportError:
import json # requires python 2.6!
** appsettings django app: as a workaround, in views.py change the references to appsettings with this:
from django.conf import settings as settings
Great plugin, but you must be aware that it needs:
** python 2.6 or above
As a workaround, replace in view.py the following lines:
try:
import simplejson as json
except ImportError:
import json # requires python 2.6!
** appsettings django app: as a workaround, in views.py change the references to appsettings with this:
from django.conf import settings as settings