Bläddra i källkod

Catch errors while searching.

tags/v0.2
Ben Kurtovic 9 år sedan
förälder
incheckning
693cdc302f
1 ändrade filer med 7 tillägg och 2 borttagningar
  1. +7
    -2
      earwigbot/wiki/copyvios/search.py

+ 7
- 2
earwigbot/wiki/copyvios/search.py Visa fil

@@ -22,8 +22,10 @@

from gzip import GzipFile
from json import loads
from socket import error
from StringIO import StringIO
from urllib import quote
from urllib2 import URLError

from earwigbot import importer
from earwigbot.exceptions import SearchQueryError
@@ -90,8 +92,11 @@ class YahooBOSSSearchEngine(BaseSearchEngine):

req = oauth.Request(method="GET", url=url, parameters=params)
req.sign_request(oauth.SignatureMethod_HMAC_SHA1(), consumer, None)
response = self.opener.open(self._build_url(url, req))
result = response.read()
try:
response = self.opener.open(self._build_url(url, req))
result = response.read()
except (URLError, error) as exc:
raise SearchQueryError("Yahoo! BOSS Error: " + str(exc))

if response.headers.get("Content-Encoding") == "gzip":
stream = StringIO(result)


Laddar…
Avbryt
Spara