Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7aa9145

Browse files
authored
Merge pull request #13683 from genelkim/tbtools-debugger-cls-var-fix
Correct the debugger_cls() call to self.debugger_cls() call in TBTool
2 parents af37d7b + 2e08c72 commit 7aa9145

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

IPython/core/ultratb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def __init__(
239239
self.debugger_cls = debugger_cls or debugger.Pdb
240240

241241
if call_pdb:
242-
self.pdb = debugger_cls()
242+
self.pdb = self.debugger_cls()
243243
else:
244244
self.pdb = None
245245

0 commit comments

Comments
 (0)