Ver código fonte

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

tags/v0.2
Ben Kurtovic 11 anos atrás
pai
commit
5931f375de
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      earwigbot/wiki/copyvios/__init__.py

+ 1
- 1
earwigbot/wiki/copyvios/__init__.py Ver arquivo

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


Carregando…
Cancelar
Salvar