aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/patches/04-fix.patch
blob: 913caffe76e48fa5ad2f646c5acfc43bcf8e7157 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- contrib/python/ipython/py3/IPython/core/ultratb.py	(index)
+++ contrib/python/ipython/py3/IPython/core/ultratb.py	(working tree)
@@ -239,7 +239,7 @@ class TBTools(colorable.Colorable):
         self.debugger_cls = debugger_cls or debugger.Pdb
 
         if call_pdb:
-            self.pdb = debugger_cls()
+            self.pdb = self.debugger_cls()
         else:
             self.pdb = None