summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chimere/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chimere/utils.py b/chimere/utils.py
index 8066255..275f107 100644
--- a/chimere/utils.py
+++ b/chimere/utils.py
@@ -53,7 +53,7 @@ def unicode_normalize(string):
string = unicode(string.decode('utf-8'))
return ''.join(
(c for c in unicodedata.normalize('NFD', string)
- if unicodedata.category(c) != 'Mn'))
+ if unicodedata.category(c) not in ('Mn', 'Sm', 'Sc')))
class ImportManager(object):