Re: Another question about the tutorial

2007-12-01 Thread walterbyrd
Thanks Karen, and thanks Rick. You guys are a big help. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this

Re: Another question about the tutorial

2007-12-01 Thread Karen Tracey
On 12/1/07, walterbyrd <[EMAIL PROTECTED]> wrote: > > > This is driving me nuts. > > Here is what I'm getting: > > >>> from djangoproject.polls.models import Poll, Choice > >>> Poll.objects.all() > [, ] > > I have no idea why I'm getting twice. It's a big > problem. > > This is the models.py file,

Re: Another question about the tutorial

2007-12-01 Thread Rick Dooling
On Dec 1, 11:27 am, walterbyrd <[EMAIL PROTECTED]> wrote: > This is driving me nuts. > The tutorial also gave me fits whether I used .95 or .96. I eventually bagged it. I had much better luck with the book. Simpler, and more of the exercises actually work. http://www.djangobook.com/en/beta/ Ri

Another question about the tutorial

2007-12-01 Thread walterbyrd
This is driving me nuts. Here is what I'm getting: >>> from djangoproject.polls.models import Poll, Choice >>> Poll.objects.all() [, ] I have no idea why I'm getting twice. It's a big problem. This is the models.py file, that I modified according to the instructions in the tutorial: -- [djan