diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2007-03-20 11:09:40 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2007-03-20 11:09:40 +0000 |
| commit | 55a67ae3f0432a86e7b6009416a850a7f747ddd7 (patch) | |
| tree | b52a6e6436a65c55335cbc8031384f9ba3d7234c | |
| parent | b8eec54041040eccbd4d6d1077257b65cdb85708 (diff) | |
Fixed #3738 -- Minor inline documentation fix. Thanks, Simon.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4754 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/models/query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/query.py b/django/db/models/query.py index a03f4ecc1f..12b2ff9d31 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -780,7 +780,7 @@ def fill_table_cache(opts, select, tables, where, old_prefix, cache_tables_seen, def parse_lookup(kwarg_items, opts): # Helper function that handles converting API kwargs # (e.g. "name__exact": "tom") to SQL. - # Returns a tuple of (tables, joins, where, params). + # Returns a tuple of (joins, where, params). # 'joins' is a sorted dictionary describing the tables that must be joined # to complete the query. The dictionary is sorted because creation order |
