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