Skip to content

Commit

Permalink
Merge pull request #54 from StdCarrot/master
Browse files Browse the repository at this point in the history
Support unicode letters
  • Loading branch information
kvesteri committed Jan 26, 2017
2 parents 48d74ee + 9435c93 commit 748217a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlalchemy_searchable/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


def is_alphanumeric(c):
return unicodedata.category(c) in ['Lu', 'Ll', 'Nd']
return unicodedata.category(c) in ['Lo', 'Lu', 'Ll', 'Nd']


all_unicode = u''.join(six.unichr(c) for c in six.moves.range(65536))
Expand Down

0 comments on commit 748217a

Please sign in to comment.