]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 78211 via svnmerge from
authorEzio Melotti <ezio.melotti@gmail.com>
Tue, 16 Feb 2010 23:59:54 +0000 (23:59 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Tue, 16 Feb 2010 23:59:54 +0000 (23:59 +0000)
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
........

Lib/wsgiref/handlers.py

index e082823d35d8f788e35309fd18e71cb2a73eeab0..4c548d123d5b94ccc2046a0427bdb23a531872bd 100644 (file)
@@ -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."