Switched to use a more idiomatic construct.
This commit is contained in:
parent
29132ebdef
commit
52df0d50b0
|
@ -1655,7 +1655,7 @@ class Query(object):
|
||||||
except MultiJoin:
|
except MultiJoin:
|
||||||
raise FieldError("Invalid field name: '%s'" % name)
|
raise FieldError("Invalid field name: '%s'" % name)
|
||||||
except FieldError:
|
except FieldError:
|
||||||
if name.find(LOOKUP_SEP) != -1:
|
if LOOKUP_SEP in name:
|
||||||
# For lookups spanning over relationships, show the error
|
# For lookups spanning over relationships, show the error
|
||||||
# from the model on which the lookup failed.
|
# from the model on which the lookup failed.
|
||||||
raise
|
raise
|
||||||
|
|
Loading…
Reference in New Issue