##// END OF EJS Templates
Correct the debugger_cls() call to self.debugger_cls() call in TBTools.__init__() so that it doesn't crash when the optionally argument, debugger_cls, is unspecified.
Gene Louis Kim -
Show More
@@ -239,7 +239,7 b' class TBTools(colorable.Colorable):'
239 239 self.debugger_cls = debugger_cls or debugger.Pdb
240 240
241 241 if call_pdb:
242 self.pdb = debugger_cls()
242 self.pdb = self.debugger_cls()
243 243 else:
244 244 self.pdb = None
245 245
General Comments 0
You need to be logged in to leave comments. Login now