:OpenBSD$
--- catfish/CatfishSearchEngine.py.orig	Fri Apr  1 05:28:07 2016
+++ catfish/CatfishSearchEngine.py	Tue Apr 26 16:31:32 2016
@@ -81,7 +81,7 @@ class CatfishSearchEngine:
     """CatfishSearchEngine is the collection of search backends that are used
     to perform a query.  Each backend is a CatfishSearchMethod"""
 
-    def __init__(self, methods=['zeitgeist', 'locate', 'walk']):
+    def __init__(self, methods=['zeitgeist', 'walk']):
         """Initialize the CatfishSearchEngine.  Provide a list of methods to
         be included in the search backends.  Available backends include:
 
@@ -503,9 +503,8 @@ class CatfishSearchMethod_Locate(CatfishSearchMethodEx
     def __init__(self):
         """Initialize the Locate SearchMethod."""
         CatfishSearchMethodExternal.__init__(self, "locate")
-        self.command = ["locate", "-i", "%path*%keywords*", "--existing"]
+        self.command = ["locate", "-i", "%keywords"]
 
     def assemble_query(self, keywords, path):
         """Assemble the search query."""
-        return ["locate", "--regex", "-i", "{}".format(string_regex(keywords,
-                                                                    path))]
+        return ["locate", "-i", str(keywords)]
