Browse Source

Catch empty Google results properly.

tags/v0.3
Ben Kurtovic 8 years ago
parent
commit
fbb9ea7b03
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      earwigbot/wiki/copyvios/search.py

+ 5
- 1
earwigbot/wiki/copyvios/search.py View File

@@ -161,7 +161,11 @@ class GoogleSearchEngine(_BaseSearchEngine):
except ValueError: except ValueError:
err = "Google Error: JSON could not be decoded" err = "Google Error: JSON could not be decoded"
raise SearchQueryError(err) 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): class YahooBOSSSearchEngine(_BaseSearchEngine):


Loading…
Cancel
Save