Fixed #26196 -- Made sure __in lookups use to_field as default.

Thanks Simon Charette for the test.
This commit is contained in:
Anssi Kääriäinen 2016-02-11 08:39:37 +02:00 committed by Tim Graham
parent 04e13c8913
commit 46ecfb9b3a
6 changed files with 25 additions and 4 deletions

View file

@ -210,7 +210,7 @@ class BaseExpression(object):
])
return c
def _prepare(self):
def _prepare(self, field):
"""
Hook used by Field.get_prep_lookup() to do custom preparation.
"""