diff options
| author | Arthur Darcet <arthur+github@darcet.fr> | 2015-07-03 15:57:50 +0200 |
|---|---|---|
| committer | Arthur Darcet <arthur+github@darcet.fr> | 2015-07-03 15:57:50 +0200 |
| commit | 85082f6e5d3d5d4d53a1eaa856c5737875efd190 (patch) | |
| tree | 7b0891024f7b1fa7bcabfc483fc930f0f1c24581 /slugify | |
| parent | 741cff34a2600e94b214279479c138dc38fdf6a9 (diff) | |
| download | python-slugify-85082f6e5d3d5d4d53a1eaa856c5737875efd190.tar.gz | |
unichr is not defined in python 3
Diffstat (limited to 'slugify')
| -rw-r--r-- | slugify/slugify.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/slugify/slugify.py b/slugify/slugify.py index 5951eb3..4c134f3 100644 --- a/slugify/slugify.py +++ b/slugify/slugify.py @@ -11,6 +11,7 @@ except ImportError: from html.entities import name2codepoint _unicode = str _unicode_type = str + unichr = chr import unidecode |
