1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-03 16:10:26 +00:00

[api] remove print

This commit is contained in:
poetwang
2012-09-21 20:42:14 +08:00
parent 25e18f7413
commit b080046b5c

View File

@@ -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)