Django

Code

Changeset 7088

Show
Ignore:
Timestamp:
02/04/08 06:05:01 (10 months ago)
Author:
mtredinnick
Message:

queryset-refactor: Fixed a typo that's been hiding out for a few months.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/queryset-refactor/django/db/models/sql/where.py

    r7087 r7088  
    126126                    params) 
    127127        elif lookup_type in 'search': 
    128             return (connection.ops.fulltest_search_sql(field_sql), params) 
     128            return (connection.ops.fulltext_search_sql(field_sql), params) 
    129129        elif lookup_type in ('regex', 'iregex'): 
    130130            return connection.ops.regex_lookup % (field_sql, cast_sql), params