[Python-checkins] r78212 - in python/branches/py3k: Lib/wsgiref/handlers.py

ezio.melotti python-checkins at python.org
Wed Feb 17 00:59:54 CET 2010


Author: ezio.melotti
Date: Wed Feb 17 00:59:54 2010
New Revision: 78212

Log:
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
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/wsgiref/handlers.py

Modified: python/branches/py3k/Lib/wsgiref/handlers.py
==============================================================================
--- python/branches/py3k/Lib/wsgiref/handlers.py	(original)
+++ python/branches/py3k/Lib/wsgiref/handlers.py	Wed Feb 17 00:59:54 2010
@@ -45,7 +45,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