Explorar el Código

Return the correct empty chain.

tags/v0.2
Ben Kurtovic hace 10 años
padre
commit
c3ddc3d35a
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

@@ -110,7 +110,8 @@ class CopyvioMixIn(object):
"""
html = self._open_url_ignoring_errors(url)
if not html:
return 0, ()
empty = MarkovChain("")
return 0, (empty, MarkovChainIntersection(empty, empty))

source = MarkovChain(HTMLTextParser(html).strip())
delta = MarkovChainIntersection(article, source)


Cargando…
Cancelar
Guardar