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 b81a9fd..45e9d03 100644
--- a/Lib/bdb.py
+++ b/Lib/bdb.py
@@ -385,7 +385,7 @@ class Bdb:
res = None
try:
try:
- res = apply(func, args)
+ res = func(*args)
except BdbQuit:
pass
finally: