##// END OF EJS Templates
Fix broken multiline input - ugly fix, needs cleanup later....
Fernando Perez -
Show More
@@ -850,7 +850,11 b' class AutoHandler(PrefilterHandler):'
850
850
851 # This should only be active for single-line input!
851 # This should only be active for single-line input!
852 if continue_prompt:
852 if continue_prompt:
853 self.log(line,line,continue_prompt)
853 # XXX - Ugly hack! We are breaking on multiline input and I'm out
854 # of time tonight to disentangle the component hirerarchy issue
855 # here... Fix this more cleanly later.
856 self.parent.parent.log(line,line,continue_prompt)
857
854 return line
858 return line
855
859
856 force_auto = isinstance(obj, IPyAutocall)
860 force_auto = isinstance(obj, IPyAutocall)
General Comments 0
You need to be logged in to leave comments. Login now