add oxdjango to ox package

This commit is contained in:
j 2010-11-23 10:23:40 +01:00
commit 0262ae50ca
11 changed files with 355 additions and 4 deletions

View file

@ -2,11 +2,15 @@
# vi:si:et:sw=4:sts=4:ts=4
try:
from django.utils.datetime_safe import datetime
except:
except ImportError:
from datetime import datetime
try:
import simplejson as json
except:
import json
except ImportError:
try:
import json
except ImportError:
from django.utils import simplejson as json