From 55a67ae3f0432a86e7b6009416a850a7f747ddd7 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 20 Mar 2007 11:09:40 +0000 Subject: [PATCH] Fixed #3738 -- Minor inline documentation fix. Thanks, Simon. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4754 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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