Sfoglia il codice sorgente

Catch more general socket.error.

tags/v0.2
Ben Kurtovic 9 anni fa
parent
commit
24dd497fd9
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      earwigbot/wiki/copyvios/__init__.py

+ 2
- 2
earwigbot/wiki/copyvios/__init__.py Vedi File

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


Caricamento…
Annulla
Salva