summaryrefslogtreecommitdiff
path: root/django/utils/html.py
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-08-11 22:44:42 +0200
committerClaude Paroz <claude@2xlibre.net>2012-08-11 23:23:31 +0200
commit900816464dbd7b1fcc009177f9de03791edc6e88 (patch)
treee3f60f78781d4e8933130b740b96170d992eb9b0 /django/utils/html.py
parent66021033381f154ddf8a9ecf93fcbb41a7abda17 (diff)
[py3] Re-decoded string after idna encoding
Diffstat (limited to 'django/utils/html.py')
-rw-r--r--django/utils/html.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/utils/html.py b/django/utils/html.py
index 7dd53a1353..647982a15f 100644
--- a/django/utils/html.py
+++ b/django/utils/html.py
@@ -143,7 +143,7 @@ def smart_urlquote(url):
# Handle IDN before quoting.
scheme, netloc, path, query, fragment = urlsplit(url)
try:
- netloc = netloc.encode('idna') # IDN -> ACE
+ netloc = netloc.encode('idna').decode('ascii') # IDN -> ACE
except UnicodeError: # invalid domain part
pass
else:
@@ -206,7 +206,7 @@ def urlize(text, trim_url_limit=None, nofollow=False, autoescape=False):
elif not ':' in middle and simple_email_re.match(middle):
local, domain = middle.rsplit('@', 1)
try:
- domain = domain.encode('idna')
+ domain = domain.encode('idna').decode('ascii')
except UnicodeError:
continue
url = 'mailto:%s@%s' % (local, domain)