소스 검색

copyvios: Missed a file

legacy-python2
Ben Kurtovic 3 년 전
부모
커밋
92d43e566e
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      earwigbot/wiki/copyvios/__init__.py

+ 3
- 2
earwigbot/wiki/copyvios/__init__.py 파일 보기

@@ -134,7 +134,8 @@ class CopyvioMixIn(object):


workspace = CopyvioWorkspace( workspace = CopyvioWorkspace(
article, min_confidence, max_time, self._logger, self._addheaders, article, min_confidence, max_time, self._logger, self._addheaders,
short_circuit=short_circuit, parser_args=parser_args, exclude_check=exclude)
short_circuit=short_circuit, parser_args=parser_args, exclude_check=exclude,
config=self._search_config)


if article.size < 20: # Auto-fail very small articles if article.size < 20: # Auto-fail very small articles
result = workspace.get_result() result = workspace.get_result()
@@ -187,7 +188,7 @@ class CopyvioMixIn(object):
article = MarkovChain(ArticleTextParser(self.get()).strip()) article = MarkovChain(ArticleTextParser(self.get()).strip())
workspace = CopyvioWorkspace( workspace = CopyvioWorkspace(
article, min_confidence, max_time, self._logger, self._addheaders, article, min_confidence, max_time, self._logger, self._addheaders,
max_time, num_workers=1)
max_time, num_workers=1, config=self._search_config)
workspace.enqueue([url]) workspace.enqueue([url])
workspace.wait() workspace.wait()
result = workspace.get_result() result = workspace.get_result()


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