diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-16 23:59:54 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-16 23:59:54 (GMT) |
commit | a3211ee8d4d25027d75abe0bd15f28a934976b61 (patch) | |
tree | ccc7d3cb9f3b32e12ff970c7b1bf60e98a29637e /Lib/wsgiref | |
parent | 412c95a4858e3020779baf0906b8c90eaa21108c (diff) | |
download | cpython-a3211ee8d4d25027d75abe0bd15f28a934976b61.zip cpython-a3211ee8d4d25027d75abe0bd15f28a934976b61.tar.gz cpython-a3211ee8d4d25027d75abe0bd15f28a934976b61.tar.bz2 |
Merged revisions 78211 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78211 | ezio.melotti | 2010-02-17 01:58:49 +0200 (Wed, 17 Feb 2010) | 1 line
#7941: fix error message
........
Diffstat (limited to 'Lib/wsgiref')
-rw-r--r-- | Lib/wsgiref/handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/wsgiref/handlers.py b/Lib/wsgiref/handlers.py index e082823..4c548d1 100644 --- a/Lib/wsgiref/handlers.py +++ b/Lib/wsgiref/handlers.py @@ -45,7 +45,7 @@ class BaseHandler: # Error handling (also per-subclass or per-instance) traceback_limit = None # Print entire traceback to self.get_stderr() - error_status = "500 Dude, this is whack!" + error_status = "500 Internal Server Error" error_headers = [('Content-Type','text/plain')] error_body = "A server error occurred. Please contact the administrator." |