Fix name of search suggestions function

This commit is contained in:
Cadence Ember 2020-08-18 00:44:09 +12:00
parent 40759efb03
commit 1cac49b641
1 changed files with 1 additions and 1 deletions

View File

@ -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):