From 2ebd7392e4d8d4e1d157b2dec973536c00f27bc5 Mon Sep 17 00:00:00 2001 From: aranzaiger Date: Tue, 16 Jun 2015 22:11:33 +0300 Subject: [PATCH] fix bug #25 --- SE_API/UserRoutes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SE_API/UserRoutes.py b/SE_API/UserRoutes.py index c0471c3..f1e9382 100644 --- a/SE_API/UserRoutes.py +++ b/SE_API/UserRoutes.py @@ -67,7 +67,7 @@ def getUserByToken(token): status=200, mimetype="application/json") # Real response! - return bad_request("No User Found") + return no_content("No User Found") @user_routes.route('/api/users/updateUser/', methods=["POST"])