From 04a55d663fdcf91a73a7a31d81a54518e6355f74 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 4 Feb 2008 12:05:01 +0000 Subject: [PATCH] queryset-refactor: Fixed a typo that's been hiding out for a few months. git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@7088 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/sql/where.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/sql/where.py b/django/db/models/sql/where.py index 620b140be8..16cfdb21b0 100644 --- a/django/db/models/sql/where.py +++ b/django/db/models/sql/where.py @@ -125,7 +125,7 @@ class WhereNode(tree.Node): return ('%s IS %sNULL' % (field_sql, (not value and 'NOT ' or '')), params) elif lookup_type in 'search': - return (connection.ops.fulltest_search_sql(field_sql), params) + return (connection.ops.fulltext_search_sql(field_sql), params) elif lookup_type in ('regex', 'iregex'): return connection.ops.regex_lookup % (field_sql, cast_sql), params