diff options
-rw-r--r-- | chimere/models.py | 3 | ||||
-rw-r--r-- | debian/control | 3 | ||||
-rw-r--r-- | requirements.txt | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/chimere/models.py b/chimere/models.py index ee4688d..85419dc 100644 --- a/chimere/models.py +++ b/chimere/models.py @@ -20,7 +20,8 @@ """ Models description """ -import os, string, json, re +import os, string, re +import simplejson as json import lxml.etree as ElementTree from datetime import datetime, timedelta from subprocess import Popen, PIPE diff --git a/debian/control b/debian/control index 54fb16f..ab3dd24 100644 --- a/debian/control +++ b/debian/control @@ -3,6 +3,7 @@ Version: 2.0 Depends: python-django (>=1.3), python-gdal, python-psycopg2, python-beautifulsoup, python-imaging, libjs-jquery, libjs-jquery-ui, libjs-jquery-ui-theme-base, - postgresql-9.1, postgresql-9.1-postgis, gettext + postgresql-9.1, postgresql-9.1-postgis, gettext, + python-simplejson Recommends: tinymce, gpsbabel Suggests: libjs-jquery-ui-theme-south-street diff --git a/requirements.txt b/requirements.txt index 8b33404..02a8290 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,3 +5,4 @@ pil #GDAL lxml south==0.7.3 +simplejson |