mirror of
https://github.com/django/django.git
synced 2025-09-26 20:19:16 +00:00
Removed unnecessary _connector from Q construction in get_for_models().
Q._connector defaults to Q.AND.
Follow up to 859a87d873
.
This commit is contained in:
parent
be80aa55ec
commit
3eaba13a47
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class ContentTypeManager(models.Manager):
|
||||||
# Lookup required content types from the DB.
|
# Lookup required content types from the DB.
|
||||||
condition = Q(
|
condition = Q(
|
||||||
*(
|
*(
|
||||||
Q(("app_label", app_label), ("model__in", models), _connector=Q.AND)
|
Q(("app_label", app_label), ("model__in", models))
|
||||||
for app_label, models in needed_models.items()
|
for app_label, models in needed_models.items()
|
||||||
),
|
),
|
||||||
_connector=Q.OR,
|
_connector=Q.OR,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue