no shared defaults

This commit is contained in:
j 2011-01-18 15:09:41 +05:30
parent 76439498b8
commit 237242b327
1 changed files with 3 additions and 1 deletions

View File

@ -11,7 +11,9 @@ class HttpErrorJson(Http404):
def __init__(self, response):
self.response = response
def json_response(data={}, status=200, text='ok'):
def json_response(data=None, status=200, text='ok'):
if not data:
data = {}
return {'status': {'code': status, 'text': text}, 'data': data}
def render_to_json_response(dictionary, content_type="text/json", status=200):