##// END OF EJS Templates
suggested fix for autocall failure
Patterson, Kevin R -
Show More
@@ -512,8 +512,10 class AutocallChecker(PrefilterChecker):
512 callable(oinfo.obj)
512 callable(oinfo.obj)
513 and (not self.exclude_regexp.match(line_info.the_rest))
513 and (not self.exclude_regexp.match(line_info.the_rest))
514 and self.function_name_regexp.match(line_info.ifun)
514 and self.function_name_regexp.match(line_info.ifun)
515 and line_info.raw_the_rest.startswith(" ")
515 and (
516 line_info.raw_the_rest.startswith(" ")
516 or not line_info.raw_the_rest.strip()
517 or not line_info.raw_the_rest.strip()
518 )
517 ):
519 ):
518 return self.prefilter_manager.get_handler_by_name("auto")
520 return self.prefilter_manager.get_handler_by_name("auto")
519 else:
521 else:
General Comments 0
You need to be logged in to leave comments. Login now