Explorar el Código

Handle empty URLs better.

tags/v0.2
Ben Kurtovic hace 10 años
padre
commit
0438766ee4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      earwigbot/wiki/copyvios/workers.py

+ 1
- 1
earwigbot/wiki/copyvios/workers.py Ver fichero

@@ -354,7 +354,7 @@ class CopyvioWorkspace(object):
with self._queues.lock:
if self._is_finished:
break
if url in self._handled_urls:
if not url or url in self._handled_urls:
continue
self._handled_urls.append(url)
if exclude_check and exclude_check(url):


Cargando…
Cancelar
Guardar