diff options
Diffstat (limited to 'chimere/utils.py')
-rw-r--r-- | chimere/utils.py | 2 |
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): |