Lookup search lowercases the term again; whoops. #15

This commit is contained in:
Eevee 2009-07-27 18:45:43 -07:00
parent 8b3614a3c8
commit 20d40364b1

View file

@ -133,7 +133,7 @@ def lookup(session, name, exact_only=False):
# Look for exact name. A Term object does an exact match, so we don't have # Look for exact name. A Term object does an exact match, so we don't have
# to worry about a query parser tripping on weird characters in the input # to worry about a query parser tripping on weird characters in the input
searcher = index.searcher() searcher = index.searcher()
query = whoosh.query.Term('name', name) query = whoosh.query.Term('name', name.lower())
results = searcher.search(query) results = searcher.search(query)
if not exact_only: if not exact_only: