Revert fix for #13807 mistakenly applied in this branch.

This commit is contained in:
Vinay Sajip 2012-02-03 18:23:05 +00:00
parent f2bf8a6ac5
commit 2f7b286a8c

View file

@ -721,7 +721,7 @@ def handleError(self, record):
You could, however, replace this with a custom handler if you wish.
The record which was being processed is passed in to this method.
"""
if raiseExceptions and sys.stderr: # see issue 13807
if raiseExceptions:
ei = sys.exc_info()
try:
traceback.print_exception(ei[0], ei[1], ei[2], None, sys.stderr)