##// END OF EJS Templates
fix multi_line_specials error...
Paul Ivanov -
Show More
@@ -695,7 +695,7 b' class AutoMagicChecker(PrefilterChecker):'
695 return None
695 return None
696
696
697 # We have a likely magic method. Make sure we should actually call it.
697 # We have a likely magic method. Make sure we should actually call it.
698 if line_info.continue_prompt and not self.shell.multi_line_specials:
698 if line_info.continue_prompt and not self.prefilter_manager.multi_line_specials:
699 return None
699 return None
700
700
701 head = line_info.ifun.split('.',1)[0]
701 head = line_info.ifun.split('.',1)[0]
General Comments 0
You need to be logged in to leave comments. Login now