Kaydet (Commit) c64b57d1 authored tarafından Anssi Kääriäinen's avatar Anssi Kääriäinen

Replaced '__' with LOOKUP_SEP in sql/query.py

Thanks to Simon Charette for report.
üst bbabfdcc
......@@ -1545,7 +1545,7 @@ class Query(object):
alias, col = query.select[0].col
query.where.add((Constraint(alias, col, None), 'isnull', False), AND)
# We need to trim the last part from the prefix.
trimmed_prefix = '__'.join(prefix.split(LOOKUP_SEP)[0:-1])
trimmed_prefix = LOOKUP_SEP.join(prefix.split(LOOKUP_SEP)[0:-1])
if not trimmed_prefix:
rel, _, direct, m2m = self.model._meta.get_field_by_name(prefix)
if not m2m:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment