mirror of https://github.com/python/cpython
Revert r42719, because the isinstance() check wasn't redundant; formatting a
string exception was causing a TypeError.
This commit is contained in:
parent
fd3fcf0b35
commit
4a26633e0e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue