diff options
| author | Tim Graham <timograham@gmail.com> | 2017-09-15 08:37:46 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-09-15 08:37:46 -0400 |
| commit | cb362a6750f421cc7ad7fabcd261da98de1cfcda (patch) | |
| tree | 237ae5c1c66d76bd95cfc5240f3a635854a876c9 /django | |
| parent | 1dafd8cb0b306053ac0ee868c717deeb778124f3 (diff) | |
Removed unnecessary check in SQLCompiler.get_related_selections().
Diffstat (limited to 'django')
| -rw-r--r-- | django/db/models/sql/compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/compiler.py b/django/db/models/sql/compiler.py index 37f5cce37a..01c303eb7e 100644 --- a/django/db/models/sql/compiler.py +++ b/django/db/models/sql/compiler.py @@ -740,7 +740,7 @@ class SQLCompiler: return chain(direct_choices, reverse_choices) related_klass_infos = [] - if not restricted and self.query.max_depth and cur_depth > self.query.max_depth: + if not restricted and cur_depth > self.query.max_depth: # We've recursed far enough; bail out. return related_klass_infos |
