Removed unnecessary check in SQLCompiler.get_related_selections().

This commit is contained in:
Tim Graham 2017-09-15 08:37:46 -04:00
parent 1dafd8cb0b
commit cb362a6750
1 changed files with 1 additions and 1 deletions

View File

@ -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