:OpenBSD$
--- catfish/CatfishSearchEngine.py.orig	Sun Sep 21 23:34:50 2014
+++ catfish/CatfishSearchEngine.py	Sat Apr  4 18:02:48 2015
@@ -69,7 +69,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:
 
@@ -463,9 +463,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)]
