소스 검색

Fix statements assigned to nothing.

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

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

@@ -137,8 +137,10 @@ class HTMLTextParser(BaseTextParser):
soup = bs4.BeautifulSoup(self.text).body

is_comment = lambda text: isinstance(text, bs4.element.Comment)
[comment.extract() for comment in soup.find_all(text=is_comment)]
for comment in soup.find_all(text=is_comment):
comment.extract()
for tag in self.hidden_tags:
[element.extract() for element in soup.find_all(tag)]
for element in soup.find_all(tag):
element.extract()

return "\n".join(soup.stripped_strings)

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