Elliot Young

Results 1 issues of Elliot Young

Some model.objects.filter() queries cause a SQLDecodeError BROKEN FILTER QUERY ```python from django.contrib.auth.models import User User.objects.filter(is_active=True) ``` There is a work-around, which is to use the "__in" instead: ```python from django.contrib.auth.models...