Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2016-05-26 14:59:29 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2016-05-26 14:59:29 +0300
commit9226513c8b9f8fea5991fd9408181664dcb2473d (patch)
treee189a8e8b53bcd14521474087ecbd52d002ccc85 /sphinx/search/de.py
parent2c351a1261a5eb414f0e03a4aa811ee798f79819 (diff)
Fix #2581: The search doesn't work if language="es" (spanish)
Diffstat (limited to 'sphinx/search/de.py')
-rw-r--r--sphinx/search/de.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/sphinx/search/de.py b/sphinx/search/de.py
index 35c6263c4..89cbe3de5 100644
--- a/sphinx/search/de.py
+++ b/sphinx/search/de.py
@@ -311,5 +311,4 @@ class SearchGerman(SearchLanguage):
self.stemmer = snowballstemmer.stemmer('german')
def stem(self, word):
- word = word.lower()
return self.stemmer.stemWord(word)