fix typos
This commit is contained in:
parent
1d429b6d33
commit
6996f9c422
2 changed files with 4 additions and 4 deletions
|
@ -12,10 +12,10 @@ from ox.utils import json
|
||||||
def to_json(python_object):
|
def to_json(python_object):
|
||||||
if isinstance(python_object, datetime.datetime):
|
if isinstance(python_object, datetime.datetime):
|
||||||
if python_object.year < 1900:
|
if python_object.year < 1900:
|
||||||
tt = python_ojbect.timetuple()
|
tt = python_object.timetuple()
|
||||||
value = '%d-%02d-%02dT%02d:%02d%02dZ' % tuple(list(tt)[:6])
|
value = '%d-%02d-%02dT%02d:%02d%02dZ' % tuple(list(tt)[:6])
|
||||||
else:
|
else:
|
||||||
value = python_ojbect.strftime('%Y-%m-%dT%H:%M:%SZ')
|
value = python_object.strftime('%Y-%m-%dT%H:%M:%SZ')
|
||||||
return {'__class__': 'datetime.datetime',
|
return {'__class__': 'datetime.datetime',
|
||||||
'__value__': value}
|
'__value__': value}
|
||||||
if isinstance(python_object, datetime_safe.datetime):
|
if isinstance(python_object, datetime_safe.datetime):
|
||||||
|
|
|
@ -21,9 +21,9 @@ def json_response(data=None, status=200, text='ok'):
|
||||||
def _to_json(python_object):
|
def _to_json(python_object):
|
||||||
if isinstance(python_object, datetime.datetime):
|
if isinstance(python_object, datetime.datetime):
|
||||||
if python_object.year < 1900:
|
if python_object.year < 1900:
|
||||||
tt = python_ojbect.timetuple()
|
tt = python_object.timetuple()
|
||||||
return '%d-%02d-%02dT%02d:%02d%02dZ' % tuple(list(tt)[:6])
|
return '%d-%02d-%02dT%02d:%02d%02dZ' % tuple(list(tt)[:6])
|
||||||
return python_ojbect.strftime('%Y-%m-%dT%H:%M:%SZ')
|
return python_object.strftime('%Y-%m-%dT%H:%M:%SZ')
|
||||||
if isinstance(python_object, datetime_safe.datetime):
|
if isinstance(python_object, datetime_safe.datetime):
|
||||||
return python_object.strftime('%Y-%m-%dT%H:%M:%SZ')
|
return python_object.strftime('%Y-%m-%dT%H:%M:%SZ')
|
||||||
raise TypeError(u'%s %s is not JSON serializable' % (repr(python_object), type(python_object)))
|
raise TypeError(u'%s %s is not JSON serializable' % (repr(python_object), type(python_object)))
|
||||||
|
|
Loading…
Reference in a new issue