diff options
| author | Ian Bicking <ianb@colorstudy.com> | 2010-09-14 10:59:50 -0500 |
|---|---|---|
| committer | Ian Bicking <ianb@colorstudy.com> | 2010-09-14 10:59:50 -0500 |
| commit | 13af02868e92e1fca24985c1b341aab23f9bfc58 (patch) | |
| tree | 14e4dff4770c98d112588ef5edf6b6eccb9b2bc6 /paste/httpexceptions.py | |
| parent | f47b88b10ff354e1df8692f45c0941377691f549 (diff) | |
| parent | 2f43ca51972a0cfa19b8dfedb38aa1eca3d21d79 (diff) | |
| download | paste-13af02868e92e1fca24985c1b341aab23f9bfc58.tar.gz | |
Automated merge with ssh://bitbucket.org/ianb/paste
Diffstat (limited to 'paste/httpexceptions.py')
| -rw-r--r-- | paste/httpexceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/httpexceptions.py b/paste/httpexceptions.py index 208d5cf..ede4f7e 100644 --- a/paste/httpexceptions.py +++ b/paste/httpexceptions.py @@ -212,7 +212,7 @@ class HTTPException(Exception): def plain(self, environ): """ text/plain representation of the exception """ - body = self.make_body(environ, strip_html(self.template), comment_quote) + body = self.make_body(environ, strip_html(self.template), no_quote, comment_quote) return ('%s %s\r\n%s\r\n' % (self.code, self.title, body)) def html(self, environ): |
