Explorar el Código

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

tags/v0.2
Ben Kurtovic hace 11 años
padre
commit
5931f375de
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      earwigbot/wiki/copyvios/__init__.py

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

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


Cargando…
Cancelar
Guardar