소스 검색

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)


불러오는 중...
취소
저장