perform a lower() on german index terms #2083

This commit is contained in:
Daniel Jakob 2015-12-17 15:06:10 +01:00 committed by Georg Brandl
parent 17a8f91922
commit cb484a4172

View File

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