From 237242b327a5812f7793b3f5089a3ff14f7205f7 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Tue, 18 Jan 2011 15:09:41 +0530 Subject: [PATCH] no shared defaults --- oxdjango/shortcuts.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/oxdjango/shortcuts.py b/oxdjango/shortcuts.py index 57a314d..eda3277 100644 --- a/oxdjango/shortcuts.py +++ b/oxdjango/shortcuts.py @@ -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):