Explorar el Código

Catch more general socket.error.

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

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

@@ -24,7 +24,7 @@ from collections import namedtuple
from gzip import GzipFile
from math import log
from Queue import Empty, Queue
from socket import timeout
from socket import error
from StringIO import StringIO
from threading import Lock, Semaphore, Thread
from time import sleep, time
@@ -190,7 +190,7 @@ class _CopyvioWorker(object):
with self._workspace.request_semaphore:
try:
response = self._opener.open(url, timeout=self._url_timeout)
except (URLError, timeout):
except (URLError, error):
return None

try:


Cargando…
Cancelar
Guardar