소스 검색

Don't die on broken regexes.

tags/v0.2
Ben Kurtovic 10 년 전
부모
커밋
09319b1675
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      earwigbot/wiki/copyvios/exclusions.py

+ 4
- 1
earwigbot/wiki/copyvios/exclusions.py 파일 보기

@@ -182,7 +182,10 @@ class ExclusionsDB(object):
excl_path = excl[excl.index("/") + 1]
matches = excl_path.startswith(parsed.path)
elif excl.startswith("re:"):
matches = re.match(excl[3:], normalized)
try:
matches = re.match(excl[3:], normalized)
except re.error:
continue
else:
matches = normalized.startswith(excl)
if matches:


불러오는 중...
취소
저장