1
0
mirror of https://github.com/django/django.git synced 2024-12-23 09:36:06 +00:00

Removed unneeded try/except in Query.names_to_path().

This commit is contained in:
Tim Graham 2016-10-13 16:56:54 -04:00 committed by GitHub
parent df1796b13f
commit 3b2db6ec12

View File

@ -1324,10 +1324,7 @@ class Query(object):
"querying. If it is a GenericForeignKey, consider "
"adding a GenericRelation." % name
)
try:
model = field.model._meta.concrete_model
except AttributeError:
model = None
model = field.model._meta.concrete_model
else:
# We didn't find the current field, so move position back
# one step.