From b080046b5cc942e485ee498959b06c619294d44d Mon Sep 17 00:00:00 2001 From: poetwang Date: Fri, 21 Sep 2012 20:42:14 +0800 Subject: [PATCH] [api] remove print --- api/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/views.py b/api/views.py index 1b215b5872..6818c75d38 100644 --- a/api/views.py +++ b/api/views.py @@ -78,7 +78,6 @@ HTTP_ERRORS = { def api_error(request, code='499', msg=None): err_resp = { 'error_msg': msg if msg is not None else HTTP_ERRORS[code] } - print "===============,", code, err_resp return HttpResponse(json.dumps(err_resp), status=code, content_type=json_content_type)