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)