Explorar el Código

Encode URLs as UTF-8 before opening them.

tags/v0.1^2
Ben Kurtovic hace 12 años
padre
commit
f993b847ab
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

@@ -65,7 +65,7 @@ class CopyvioMixIn(object):
ignored, and the original content is returned.
"""
try:
response = self._opener.open(url, timeout=5)
response = self._opener.open(url.encode("utf8"), timeout=5)
except (URLError, timeout):
return None
result = response.read()


Cargando…
Cancelar
Guardar