From e289a24aa60bdac618aa338c717ffb3c2c71a356 Mon Sep 17 00:00:00 2001 From: Bryce Allen Date: Thu, 19 Mar 2015 23:20:47 -0500 Subject: [PATCH] fix content type typo --- web/mhapi_wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/mhapi_wsgi.py b/web/mhapi_wsgi.py index 6f22cfa..9486488 100755 --- a/web/mhapi_wsgi.py +++ b/web/mhapi_wsgi.py @@ -72,7 +72,7 @@ class App(object): if etag in req.if_none_match: return exc.HTTPNotModified() - resp.content_type = "text/plan" + resp.content_type = "text/plain" item_name = req.params.get("item_name", "").strip() if not item_name: