hi I was trying out in django's python shell the get_object_or_404 method on a set of entries I created in the db.I created an entry with a DateTimeField called 'posted_time'.I used datetime.datetime.now as default value and it created Date:2010-02-01 Time:10:02:22 I also created many other such entries with different datetime values
In the shell I tried this from django.shortcuts import get_object_or_404 as gtobj e1=gtobj(MyEntry,posted_time__year=2010,posted_time__month=2,posted_time__day=1) This is successful ,it gives this message MultipleObjectsReturned: get() returned more than one MyEntry -- it returned 4! However when I tried , e1=gtobj(MyEntry,posted_time__year=2010,posted_time__month=2,posted_time__day=1,posted_time__hour=10) I get this error, FieldError: Join on field 'posted_time' not permitted. Did you misspell 'hour' for the lookup type? Why is this happening?can someone help me figure this out?I tried various values for the hour and minute ..the same error happens for minute also. thanks harry -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.