Sfoglia il codice sorgente

Catch errors around response.read().

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

+ 4
- 1
earwigbot/wiki/copyvios/__init__.py Vedi File

@@ -210,7 +210,10 @@ class _CopyvioWorker(object):
return None

with self._workspace.request_semaphore:
content = response.read()
try:
content = response.read()
except (URLError, error):
return None

if response.headers.get("Content-Encoding") == "gzip":
stream = StringIO(content)


Caricamento…
Annulla
Salva