##// END OF EJS Templates
rm debug printing, fix typo bug
vivainio -
Show More
@@ -5,11 +5,11 b' ip = IPython.ipapi.get()'
5
5
6 def call_pydb(self, args):
6 def call_pydb(self, args):
7 argl = arg_split(args)
7 argl = arg_split(args)
8 print argl
8 # print argl # dbg
9 if ip.IP.has_readline:
9 if ip.IP.has_readline:
10 ip.IP.savehist()
10 ip.IP.savehist()
11 try:
11 try:
12 pydb.runl(*args)
12 pydb.runl(*argl)
13 finally:
13 finally:
14
14
15 if ip.IP.has_readline:
15 if ip.IP.has_readline:
General Comments 0
You need to be logged in to leave comments. Login now