diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-01-20 11:31:46 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-01-20 11:31:46 (GMT) |
commit | 5d116b758a0819e8ef81230a82a63762c757df0a (patch) | |
tree | 8031b252d9f728592a521a5f713306f02d87c3a4 /Lib/logging | |
parent | 2396c0a28fec1e810b5f92a6999c7d9de8538a81 (diff) | |
parent | 315a62befc54d5643c933852fb41066c91f3a32e (diff) | |
download | cpython-5d116b758a0819e8ef81230a82a63762c757df0a.zip cpython-5d116b758a0819e8ef81230a82a63762c757df0a.tar.gz cpython-5d116b758a0819e8ef81230a82a63762c757df0a.tar.bz2 |
Closes #13807: Merged fix from 3.2.
Diffstat (limited to 'Lib/logging')
-rw-r--r-- | Lib/logging/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 3b2b9bf..a3b1c0a 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -878,7 +878,7 @@ class Handler(Filterer): 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: + if raiseExceptions and sys.stderr: # see issue 13807 ei = sys.exc_info() try: traceback.print_exception(ei[0], ei[1], ei[2], |