[Python-checkins] r78211 - python/trunk/Lib/wsgiref/handlers.py

ezio.melotti python-checkins at python.org
Wed Feb 17 00:58:49 CET 2010


Author: ezio.melotti
Date: Wed Feb 17 00:58:49 2010
New Revision: 78211

Log:
#7941: fix error message

Modified:
   python/trunk/Lib/wsgiref/handlers.py

Modified: python/trunk/Lib/wsgiref/handlers.py
==============================================================================
--- python/trunk/Lib/wsgiref/handlers.py	(original)
+++ python/trunk/Lib/wsgiref/handlers.py	Wed Feb 17 00:58:49 2010
@@ -64,7 +64,7 @@
 
     # 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."
 


More information about the Python-checkins mailing list