Revert r42719, because the isinstance() check wasn't redundant; formatting a

string exception was causing a TypeError.
This commit is contained in:
Phillip J. Eby 2006-03-24 22:10:54 +00:00
parent fd3fcf0b35
commit 4a26633e0e
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ def format_exception_only(etype, value):
"""
list = []
if (type(etype) == types.ClassType
or issubclass(etype, Exception)):
or (isinstance(etype, type) and issubclass(etype, Exception))):
stype = etype.__name__
else:
stype = etype