We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 796b39e commit 90cdeb4Copy full SHA for 90cdeb4
roundup/backends/indexer_rdbms.py
@@ -69,7 +69,7 @@ def tryencode(str):
69
str = str.encode("utf-8", "replace")
70
return str
71
text = tryencode(text).upper()
72
- wordlist = [tryencode(w)
+ wordlist = [w.encode("utf-8")
73
for w in re.findall(r'(?u)\b\w{%d,%d}\b'
74
% (self.minlength, self.maxlength), text)]
75
words = set()
0 commit comments