##// END OF EJS Templates
fix IPython check in debugger.Tracer
MinRK -
Show More
@@ -104,8 +104,8 b' class Tracer(object):'
104 """
104 """
105
105
106 try:
106 try:
107 ip = ipapi.get()
107 ip = get_ipython()
108 except:
108 except NameError:
109 # Outside of ipython, we set our own exception hook manually
109 # Outside of ipython, we set our own exception hook manually
110 BdbQuit_excepthook.excepthook_ori = sys.excepthook
110 BdbQuit_excepthook.excepthook_ori = sys.excepthook
111 sys.excepthook = BdbQuit_excepthook
111 sys.excepthook = BdbQuit_excepthook
General Comments 0
You need to be logged in to leave comments. Login now