diff options
Diffstat (limited to 'django/db/models/sql/datastructures.py')
| -rw-r--r-- | django/db/models/sql/datastructures.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/django/db/models/sql/datastructures.py b/django/db/models/sql/datastructures.py index be6934485c..ffdd36c0c8 100644 --- a/django/db/models/sql/datastructures.py +++ b/django/db/models/sql/datastructures.py @@ -37,8 +37,8 @@ class Join: - table_alias (possible alias for the table, can be None) - join_type (can be None for those entries that aren't joined from anything) - - parent_alias (which table is this join's parent, can be None similarly - to join_type) + - parent_alias (which table is this join's parent, can be None + similarly to join_type) - as_sql() - relabeled_clone() """ @@ -76,7 +76,8 @@ class Join: def as_sql(self, compiler, connection): """ Generate the full - LEFT OUTER JOIN sometable ON sometable.somecol = othertable.othercol, params + LEFT OUTER JOIN sometable ON sometable.somecol = + othertable.othercol, params clause for this join. """ join_conditions = [] |
