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

View file

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