Fix the formatting of KeyboardInterrupt -- a bad issubclass() call.
diff --git a/Lib/traceback.py b/Lib/traceback.py
index 454eb1b..d900f52 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 (isinstance(etype, type) and issubclass(etype, BaseException))):
         stype = etype.__name__
     else:
         stype = etype