Преглед изворни кода

Encode URLs as UTF-8 before opening them.

tags/v0.1^2
Ben Kurtovic пре 12 година
родитељ
комит
f993b847ab
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      earwigbot/wiki/copyvios/__init__.py

+ 1
- 1
earwigbot/wiki/copyvios/__init__.py Прегледај датотеку

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


Loading…
Откажи
Сачувај