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
1 changed files with 1 additions and 4 deletions

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.