Explorar el Código

Forgot to give process_time param to CopyvioCheckResult.

tags/v0.2
Ben Kurtovic hace 11 años
padre
commit
25d75c5d11
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      earwigbot/wiki/copyvios/__init__.py

+ 2
- 1
earwigbot/wiki/copyvios/__init__.py Ver fichero

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

if article_chain.size() < 20: # Auto-fail very small articles
return CopyvioCheckResult(False, best_confidence, best_match,
num_queries, article_chain, best_chains)
num_queries, 0, article_chain,
best_chains)

while (chunks and best_confidence < min_confidence and
(max_queries < 0 or num_queries < max_queries)):


Cargando…
Cancelar
Guardar