Re: noob question about URLconf

2010-10-09 Thread lyrical
Thanks, I indeed did not run my manage.py file. On Oct 9, 5:35 am, Andi Trînculescu wrote: > You probably didn't run manage.py runserver. > You also need to install your app in settings.py > > On Oct 9, 12:50 am, lyrical wrote: > > > I'm following the Django book

noob question about URLconf

2010-10-08 Thread lyrical
I'm following the Django book but run into a pathing problem (I think) I did exactly what the book said, even copying and pasting the code as to make sure I didn't make a typo. so in the views.py I have from django.http import HttpResponse def hello(request): return HttpResponse("Hello world")