浏览代码

Put response.read() in the try:, since that's what throws the timeout.

tags/v0.2
Ben Kurtovic 11 年前
父节点
当前提交
5931f375de
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      earwigbot/wiki/copyvios/__init__.py

+ 1
- 1
earwigbot/wiki/copyvios/__init__.py 查看文件

@@ -63,9 +63,9 @@ class CopyvioMixIn(object):
"""
try:
response = self._opener.open(url.encode("utf8"), timeout=5)
result = response.read()
except (URLError, timeout):
return None
result = response.read()

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


正在加载...
取消
保存