python-ox/ox/utils.py

13 lines
211 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
try:
from django.utils.datetime_safe import datetime
except:
from datetime import datetime
2010-07-28 13:04:43 +00:00
try:
import simplejson as json
except:
import json