Procházet zdrojové kódy

Encode URLs as UTF-8 before opening them.

tags/v0.1^2
Ben Kurtovic před 12 roky
rodič
revize
f993b847ab
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      earwigbot/wiki/copyvios/__init__.py

+ 1
- 1
earwigbot/wiki/copyvios/__init__.py Zobrazit soubor

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


Načítá se…
Zrušit
Uložit