From: Eevee Date: Tue, 28 Jul 2009 01:45:43 +0000 (-0700) Subject: Lookup search lowercases the term again; whoops. #15 X-Git-Tag: veekun-promotions/2010050901~233 X-Git-Url: http://git.veekun.com/zzz-pokedex.git/commitdiff_plain/ede868619c0b233c01461cd836c09a8a631094ae?ds=sidebyside;hp=ee57dfd4a3c77fc76231aff79ae68c9295d68613 Lookup search lowercases the term again; whoops. #15 --- diff --git a/pokedex/lookup.py b/pokedex/lookup.py index 8c92edb..9d61ce8 100644 --- a/pokedex/lookup.py +++ b/pokedex/lookup.py @@ -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 # to worry about a query parser tripping on weird characters in the input searcher = index.searcher() - query = whoosh.query.Term('name', name) + query = whoosh.query.Term('name', name.lower()) results = searcher.search(query) if not exact_only: