Ver código fonte

Reorder length check to potentially fix an empty-query bug.

tags/v0.2
Ben Kurtovic 9 anos atrás
pai
commit
c4dede1459
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      earwigbot/wiki/copyvios/parsers.py

+ 2
- 2
earwigbot/wiki/copyvios/parsers.py Ver arquivo

@@ -99,13 +99,13 @@ class ArticleTextParser(BaseTextParser):

sentences = []
for sentence in tokenizer.tokenize(self.clean):
if len(sentence) < min_query:
continue
if len(sentence) > max_query:
words = sentence.split()
while len(" ".join(words)) > max_query:
words.pop()
sentence = " ".join(words)
if len(sentence) < min_query:
continue
sentences.append(sentence)

if max_chunks >= len(sentences):


Carregando…
Cancelar
Salvar