From 1cac49b641b992c3c77626cfd61f8e75db595cde Mon Sep 17 00:00:00 2001 From: Cadence Ember Date: Tue, 18 Aug 2020 00:44:09 +1200 Subject: [PATCH] Fix name of search suggestions function --- index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.py b/index.py index 955dd39..e931b37 100644 --- a/index.py +++ b/index.py @@ -112,7 +112,7 @@ class Second(object): @cherrypy.expose @cherrypy.tools.json_out() def suggestions(self, *, q, **kwargs): - return extract_suggestions(q) + return extract_search_suggestions(q) @cherrypy.expose def vi(self, id, file):