From b5422dac9b58ea664a1159e8b9db0cc67a37ea7e Mon Sep 17 00:00:00 2001 From: Frank Bryden Date: Mon, 10 Aug 2020 11:44:11 +0000 Subject: [PATCH] Fix for 1111 Reordering of format_out Change-Id: I59f64d22c39c82bf099c74647d0f128092d24f95 Signed-off-by: Frank Bryden --- osm_nbi/nbi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osm_nbi/nbi.py b/osm_nbi/nbi.py index 2b54ae5..ecd6a5a 100644 --- a/osm_nbi/nbi.py +++ b/osm_nbi/nbi.py @@ -619,7 +619,7 @@ class Server(object): if accept: if "text/html" in accept: return html.format(data, cherrypy.request, cherrypy.response, token_info) - elif "application/yaml" in accept or "*/*" in accept or "text/plain" in accept: + elif "application/yaml" in accept or "*/*" in accept: pass elif "application/json" in accept or (cherrypy.response.status and cherrypy.response.status >= 300): cherrypy.response.headers["Content-Type"] = 'application/json; charset=utf-8' -- 2.17.1