diff options
| author | shimizukawa <shimizukawa@gmail.com> | 2015-06-08 15:08:22 +0800 |
|---|---|---|
| committer | shimizukawa <shimizukawa@gmail.com> | 2015-06-08 15:08:22 +0800 |
| commit | cf42c46beb999d3ea3e6f8044dd64401bedadbf2 (patch) | |
| tree | de2774d9b987012a82189e9ff513999bb681f48c /sphinx/websupport | |
| parent | 059a74c51e10f5a6909f9151e312d1b55d8be073 (diff) | |
| download | sphinx-git-cf42c46beb999d3ea3e6f8044dd64401bedadbf2.tar.gz | |
refs #1784: fix for websupport.
Diffstat (limited to 'sphinx/websupport')
| -rw-r--r-- | sphinx/websupport/search/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sphinx/websupport/search/__init__.py b/sphinx/websupport/search/__init__.py index bae6fa73c..3aafbda55 100644 --- a/sphinx/websupport/search/__init__.py +++ b/sphinx/websupport/search/__init__.py @@ -119,6 +119,10 @@ class BaseSearch(object): """Required by the HTML builder.""" return {} + def get_js_stemmer_rawcode(self): + """Required by the HTML builder.""" + return None + # The built-in search adapters. SEARCH_ADAPTERS = { |
