Python 3
[wolnelektury.git] / src / sortify.py
index f1e8bcb..941f50f 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 import re
-from fnpdjango.utils.text.slughifi import char_map
+from fnpdjango.utils.text import char_map
 
 
 # Specifies diacritics order.
@@ -33,8 +33,8 @@ def sortify(value):
 
     """
 
-    if not isinstance(value, unicode):
-        value = unicode(value, 'utf-8')
+    if not isinstance(value, str):
+        value = str(value, 'utf-8')
 
     # try to replace chars
     value = re.sub('[^a-zA-Z0-9\\s\\-]', replace_char, value)