summaryrefslogtreecommitdiffstats
path: root/Lib/logging/__init__.py
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2012-01-20 11:27:36 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2012-01-20 11:27:36 (GMT)
commit315a62befc54d5643c933852fb41066c91f3a32e (patch)
treeb0385c7883a716f191ed6041b87550bda0ad811b /Lib/logging/__init__.py
parenta3443d985e84a052a45e93afa7759eb6776b7fb4 (diff)
parent889bb2969d00a548279c7e4dd237c23b100548e2 (diff)
downloadcpython-315a62befc54d5643c933852fb41066c91f3a32e.zip
cpython-315a62befc54d5643c933852fb41066c91f3a32e.tar.gz
cpython-315a62befc54d5643c933852fb41066c91f3a32e.tar.bz2
Closes #13807: Merged fix from 3.1.
Diffstat (limited to 'Lib/logging/__init__.py')
-rw-r--r--Lib/logging/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index 7dacddb..5f73ec2 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -881,7 +881,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],