Merge pull request #4871 from derdennis/1.7

Fixed the German HTML search again, this time from the 1.7 branch
This commit is contained in:
Takeshi KOMIYA 2018-04-21 16:58:38 +09:00 committed by GitHub
commit 478b31349b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -311,4 +311,4 @@ class SearchGerman(SearchLanguage):
self.stemmer = snowballstemmer.stemmer('german') self.stemmer = snowballstemmer.stemmer('german')
def stem(self, word): def stem(self, word):
return self.stemmer.stemWord(word) return self.stemmer.stemWord(word.lower())