Fix for 1111 Reordering of format_out 56/9556/1
authorFrank Bryden <frank.bryden@etsi.org>
Mon, 10 Aug 2020 11:44:11 +0000 (11:44 +0000)
committerFrank Bryden <frank.bryden@etsi.org>
Mon, 10 Aug 2020 12:09:14 +0000 (12:09 +0000)
Change-Id: I59f64d22c39c82bf099c74647d0f128092d24f95
Signed-off-by: Frank Bryden <frank.bryden@etsi.org>
osm_nbi/nbi.py

index 2b54ae5..ecd6a5a 100644 (file)
@@ -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'