fix content type typo

This commit is contained in:
Bryce Allen
2015-03-19 23:20:47 -05:00
parent 51fab8170b
commit e289a24aa6

View File

@@ -72,7 +72,7 @@ class App(object):
if etag in req.if_none_match: if etag in req.if_none_match:
return exc.HTTPNotModified() return exc.HTTPNotModified()
resp.content_type = "text/plan" resp.content_type = "text/plain"
item_name = req.params.get("item_name", "").strip() item_name = req.params.get("item_name", "").strip()
if not item_name: if not item_name: