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
........
This commit is contained in:
Ezio Melotti 2010-02-16 23:59:54 +00:00
parent 412c95a485
commit a3211ee8d4
1 changed files with 1 additions and 1 deletions

View 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."