diff options
author | lxf <lxf@d1stkfactory> | 2014-05-21 18:21:03 +0000 |
---|---|---|
committer | lxf <lxf@d1stkfactory> | 2014-05-21 18:21:03 +0000 |
commit | f787e348df5aae0d53053b3e4cce3fb1ffbeccb2 (patch) | |
tree | 7976b716ae74cfec10e0f85481b2116b7799149e /app/projects | |
parent | 750746d3d6f3cd297902a8d8ccd5d7519a9956e0 (diff) |
additional fixes to run under python 3.2
Diffstat (limited to 'app/projects')
-rw-r--r-- | app/projects/shortcuts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/projects/shortcuts.py b/app/projects/shortcuts.py index d54410c..600e56d 100644 --- a/app/projects/shortcuts.py +++ b/app/projects/shortcuts.py @@ -1,7 +1,7 @@ from django.contrib.gis.db.models.fields import GeometryField
#from django.contrib.gis.gdal import Envelope
from django.contrib.gis.geos import Polygon
-from django.utils import simplejson
+import json as simplejson
from django.http import HttpResponse
#from django.db.models.fields.related import ManyRelatedManager
|