Remove redundant isinstance() check.
diff --git a/Lib/traceback.py b/Lib/traceback.py
index d4a4011..4971906 100644
--- a/Lib/traceback.py
+++ b/Lib/traceback.py
@@ -158,7 +158,7 @@
     """
     list = []
     if (type(etype) == types.ClassType
-        or (isinstance(etype, type) and issubclass(etype, Exception))):
+        or issubclass(etype, Exception)):
         stype = etype.__name__
     else:
         stype = etype