summaryrefslogtreecommitdiffstats
path: root/Lib/bdb.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r--Lib/bdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py
index ccd729c..b05ed22 100644
--- a/Lib/bdb.py
+++ b/Lib/bdb.py
@@ -6,7 +6,7 @@ import types
__all__ = ["BdbQuit","Bdb","Breakpoint"]
-BdbQuit = 'bdb.BdbQuit' # Exception to give up completely
+class BdbQuit(Exception): pass
class Bdb: