*platform:* Django-1.5, python2.7

*code:*
class TestModel(models.Model):
    a = models.SmallIntegerField()
    b = models.SmallIntegerField()

TestModel.objects.filter(a__range=(F('b')-1, F('b')+1)

*result:*
django.db.models.fields in get_prep_value
TypeError: int() argument must be a string or a number, not 'ExpressionNode'

*Why:*
Does anyone saw this error before, is it Django's bug?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/bf27e999-085d-490e-aae0-2abbb626495e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to