Selaa lähdekoodia

Catch empty Google results properly.

tags/v0.3
Ben Kurtovic 8 vuotta sitten
vanhempi
commit
fbb9ea7b03
1 muutettua tiedostoa jossa 5 lisäystä ja 1 poistoa
  1. +5
    -1
      earwigbot/wiki/copyvios/search.py

+ 5
- 1
earwigbot/wiki/copyvios/search.py Näytä tiedosto

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


Ladataan…
Peruuta
Tallenna