瀏覽代碼

Catch errors while searching.

tags/v0.2
Ben Kurtovic 9 年之前
父節點
當前提交
693cdc302f
共有 1 個檔案被更改,包括 7 行新增2 行删除
  1. +7
    -2
      earwigbot/wiki/copyvios/search.py

+ 7
- 2
earwigbot/wiki/copyvios/search.py 查看文件

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


Loading…
取消
儲存