Explorar el Código

Catch empty Google results properly.

tags/v0.3
Ben Kurtovic hace 8 años
padre
commit
fbb9ea7b03
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. +5
    -1
      earwigbot/wiki/copyvios/search.py

+ 5
- 1
earwigbot/wiki/copyvios/search.py Ver fichero

@@ -161,7 +161,11 @@ class GoogleSearchEngine(_BaseSearchEngine):
except ValueError:
err = "Google Error: JSON could not be decoded"
raise SearchQueryError(err)
return [item["link"] for item in res["items"]]

try:
return [item["link"] for item in res["items"]]
except KeyError:
return []


class YahooBOSSSearchEngine(_BaseSearchEngine):


Cargando…
Cancelar
Guardar