From be2524182b55a78cb73fa56836bd70de05d6d4e0 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 20 Jul 2006 20:13:35 +0000 Subject: [PATCH] Fixed #2379 -- Fixed 'search' DB lookup parameter, which was broken by [3248]. Thanks, Tim Keating git-svn-id: http://code.djangoproject.com/svn/django/trunk@3400 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/query.py b/django/db/models/query.py index 2b4a13354b..0b85c3f515 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -18,7 +18,7 @@ QUERY_TERMS = ( 'exact', 'iexact', 'contains', 'icontains', 'gt', 'gte', 'lt', 'lte', 'in', 'startswith', 'istartswith', 'endswith', 'iendswith', - 'range', 'year', 'month', 'day', 'isnull', + 'range', 'year', 'month', 'day', 'isnull', 'search', ) # Size of each "chunk" for get_iterator calls.