From b650ba2401799f434fef93d43cc0055e96d34dd2 Mon Sep 17 00:00:00 2001 From: Dennis Wegner Date: Fri, 20 Apr 2018 17:51:19 +0200 Subject: [PATCH] Fixed the German HTML search again, this time from the 1.7 branch --- sphinx/search/de.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/search/de.py b/sphinx/search/de.py index 89cbe3de5..f511748f7 100644 --- a/sphinx/search/de.py +++ b/sphinx/search/de.py @@ -311,4 +311,4 @@ class SearchGerman(SearchLanguage): self.stemmer = snowballstemmer.stemmer('german') def stem(self, word): - return self.stemmer.stemWord(word) + return self.stemmer.stemWord(word.lower())