Explorar el Código

Catch errors while searching.

tags/v0.2
Ben Kurtovic hace 10 años
padre
commit
693cdc302f
Se han modificado 1 ficheros con 7 adiciones y 2 borrados
  1. +7
    -2
      earwigbot/wiki/copyvios/search.py

+ 7
- 2
earwigbot/wiki/copyvios/search.py Ver fichero

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


Cargando…
Cancelar
Guardar