diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-16 23:58:49 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-16 23:58:49 (GMT) |
commit | 6f9030329c0eb9d3aa279b26842efc51a47d96e0 (patch) | |
tree | 5dcdef34f569e6a318dff3ad7fd39f9ea091d811 /Lib/wsgiref | |
parent | e511fc7979b21a62edf3f85d4eecdc8a9ea2f06a (diff) | |
download | cpython-6f9030329c0eb9d3aa279b26842efc51a47d96e0.zip cpython-6f9030329c0eb9d3aa279b26842efc51a47d96e0.tar.gz cpython-6f9030329c0eb9d3aa279b26842efc51a47d96e0.tar.bz2 |
#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 0af1c8f..aa8163b 100644 --- a/Lib/wsgiref/handlers.py +++ b/Lib/wsgiref/handlers.py @@ -64,7 +64,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." |