summaryrefslogtreecommitdiff
path: root/django/utils
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2013-09-27 17:00:42 +0200
committerBaptiste Mispelon <bmispelon@gmail.com>2013-09-27 17:00:42 +0200
commit3754f4ad410640382f9fe25073da03009cdc2ea3 (patch)
tree9c689e97703465fcdb5220c079d9eb57c72fe1ad /django/utils
parent90cd676d291c8e4bb064611e0df8ea98ef47bb59 (diff)
Fix #21185: Added tests for unescape_entities.
Also fixed a py3 incompatibility. Thanks to brutasse for the report.
Diffstat (limited to 'django/utils')
-rw-r--r--django/utils/text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/utils/text.py b/django/utils/text.py
index eeff5c5a2e..93c33b3351 100644
--- a/django/utils/text.py
+++ b/django/utils/text.py
@@ -365,12 +365,12 @@ def _replace_entity(match):
c = int(text[1:], 16)
else:
c = int(text)
- return unichr(c)
+ return six.unichr(c)
except ValueError:
return match.group(0)
else:
try:
- return unichr(html_entities.name2codepoint[text])
+ return six.unichr(html_entities.name2codepoint[text])
except (ValueError, KeyError):
return match.group(0)