Author: adrian
Date: 2006-07-20 15:13:35 -0500 (Thu, 20 Jul 2006)
New Revision: 3400

Modified:
   django/trunk/django/db/models/query.py
Log:
Fixed #2379 -- Fixed 'search' DB lookup parameter, which was broken by [3248]. 
Thanks, Tim Keating

Modified: django/trunk/django/db/models/query.py
===================================================================
--- django/trunk/django/db/models/query.py      2006-07-20 16:06:02 UTC (rev 
3399)
+++ django/trunk/django/db/models/query.py      2006-07-20 20:13:35 UTC (rev 
3400)
@@ -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.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates
-~----------~----~----~----~------~----~------~--~---

Reply via email to