소스 검색

Correctly handle HTML with no <body> tags.

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

+ 4
- 0
earwigbot/wiki/copyvios/parsers.py 파일 보기

@@ -136,6 +136,10 @@ class HTMLTextParser(BaseTextParser):
except ValueError:
soup = bs4.BeautifulSoup(self.text).body

if not soup:
# No <body> tag present in HTML ->
# no scrapable content (possibly JS or <frame> magic):
return ""
is_comment = lambda text: isinstance(text, bs4.element.Comment)
for comment in soup.find_all(text=is_comment):
comment.extract()


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