mirror of
https://github.com/Hopiu/django.git
synced 2026-03-29 12:20:23 +00:00
Removed unnecessary check in SQLCompiler.get_related_selections().
This commit is contained in:
parent
1dafd8cb0b
commit
cb362a6750
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue