]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#7941: fix error message
authorEzio Melotti <ezio.melotti@gmail.com>
Tue, 16 Feb 2010 23:58:49 +0000 (23:58 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Tue, 16 Feb 2010 23:58:49 +0000 (23:58 +0000)
Lib/wsgiref/handlers.py

index 0af1c8f0bd403ea5f5151e304624f3c3d5f19005..aa8163b6713bb559ef3548276a6b1dca488a2db1 100644 (file)
@@ -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."