summaryrefslogtreecommitdiff
path: root/paste/evalexception
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2006-07-29 23:48:25 +0000
committerpjenvey <devnull@localhost>2006-07-29 23:48:25 +0000
commit08a94c85aaeecff33f2c73d692122f96f0a058b1 (patch)
tree67417d9c662ce485da905659d9a7c9930fda39d6 /paste/evalexception
parent5f3484a48845ff665ee772d18471cfaa521422cf (diff)
downloadpaste-08a94c85aaeecff33f2c73d692122f96f0a058b1.tar.gz
evalexception was using the wrong contet-type, probably a typo
Diffstat (limited to 'paste/evalexception')
-rw-r--r--paste/evalexception/middleware.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/evalexception/middleware.py b/paste/evalexception/middleware.py
index 85f539e..4fedbe0 100644
--- a/paste/evalexception/middleware.py
+++ b/paste/evalexception/middleware.py
@@ -407,7 +407,7 @@ class DebugInfo(object):
"No frame by id %s found from %r" % (tbid, self.frames))
def wsgi_application(self, environ, start_response):
- start_response('200 OK', [('content-type', 'text-html')])
+ start_response('200 OK', [('content-type', 'text/html')])
return self.content()
def content(self):