Lines Matching refs:bug
429 """Check that bug entries are well-formed in commit message."""
434 for bug in (input_api.change.BUG or '').split(','):
435 bug = bug.strip()
436 if 'none'.startswith(bug.lower()):
438 if ':' not in bug:
440 if int(bug) > 100000:
447 prefix_guess, bug))
449 results.append(bogus_bug_msg.format(bug))
450 elif not re.match(r'\w+:\d+', bug):
451 results.append(bogus_bug_msg.format(bug))