commit | 9bfeec2186020e8266b1a4f25a0e53774dd70116 | [log] [tgz] |
---|---|---|
author | Brad Bishop <bradleyb@us.ibm.com> | Tue Nov 17 09:14:50 2015 -0500 |
committer | Brad Bishop <bradleyb@us.ibm.com> | Tue Nov 17 09:14:50 2015 -0500 |
tree | 776f197ca687aacc967ada9c7799ebb23509376a | |
parent | 275ec270684cd3b946674d02462bc9ed1890360e [diff] |
Set response type correctly for errors Error response type was 'text/html' but should be 'application/json'
diff --git a/obmc-rest b/obmc-rest index f655599..017a736 100644 --- a/obmc-rest +++ b/obmc-rest
@@ -509,7 +509,7 @@ response_object['data']['traceback'] = error.traceback.splitlines() json_response = json.dumps(response_object, **self.json_opts) - res.content_type = 'application/json' + response.content_type = 'application/json' return json_response class RestApp(Bottle):