mirror of
https://github.com/django/django.git
synced 2025-09-30 14:01:21 +00:00
magic-removal: Fixed bug in parse_lookup introduced in 2150, and tidied up a bit
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2236 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
1308017f62
commit
5366beeb70
1 changed files with 6 additions and 8 deletions
|
@ -574,9 +574,7 @@ def parse_lookup(kwarg_items, opts):
|
|||
tables, joins, where, params = [], SortedDict(), [], []
|
||||
|
||||
for kwarg, value in kwarg_items:
|
||||
if value is None:
|
||||
pass
|
||||
else:
|
||||
if value is not None:
|
||||
path = kwarg.split(LOOKUP_SEPARATOR)
|
||||
# Extract the last elements of the kwarg.
|
||||
# The very-last is the clause (equals, like, etc).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue