Skip to content

Commit

Permalink
Fixed #2379 -- Fixed 'search' DB lookup parameter, which was broken b…
Browse files Browse the repository at this point in the history
…y [3248]. Thanks, Tim Keating

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3400 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jul 20, 2006
1 parent aa8b34c commit be25241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/models/query.py
Expand Up @@ -18,7 +18,7 @@
'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.
Expand Down

0 comments on commit be25241

Please sign in to comment.