Ver código fonte

Catch empty Google results properly.

tags/v0.3
Ben Kurtovic 8 anos atrás
pai
commit
fbb9ea7b03
1 arquivos alterados com 5 adições e 1 exclusões
  1. +5
    -1
      earwigbot/wiki/copyvios/search.py

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

@@ -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):


Carregando…
Cancelar
Salvar