From f233bf47dde1d481108142c8d6b4bb3b3d8c6d08 Mon Sep 17 00:00:00 2001 From: Anssi Kääriäinen Date: Sat, 9 Nov 2013 14:25:15 +0200 Subject: Fixed #21414 -- Removed RelatedObject and deprecated Field.related. --- django/db/models/sql/datastructures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/db/models/sql/datastructures.py') diff --git a/django/db/models/sql/datastructures.py b/django/db/models/sql/datastructures.py index fc5ffc1790..a245e451d6 100644 --- a/django/db/models/sql/datastructures.py +++ b/django/db/models/sql/datastructures.py @@ -55,7 +55,7 @@ class Join(object): # A list of 2-tuples to use in the ON clause of the JOIN. # Each 2-tuple will create one join condition in the ON clause. self.join_cols = join_field.get_joining_columns() - # Along which field (or RelatedObject in the reverse join case) + # Along which field (or ForeignObjectRel in the reverse join case) self.join_field = join_field # Is this join nullabled? self.nullable = nullable -- cgit v1.3