Re: Error running Django tutorial

2020-03-25 Thread Thomas Pittman
Kyle D, This is why I stay in this thread. Thanks for the heads up. I remember being so lost when I tried to start teaching myself Django. What's the class for? Regards On Tue, Mar 24, 2020 at 10:46 PM kyle D wrote: > I'm using Django for a class, and came across this thread and thought I'd >

Re: Error running Django tutorial

2017-03-16 Thread Thomas Pittman
I'm not sure why, but it stopped the error and send to import it. I'm using 3.6? On Mar 16, 2017 11:45 AM, "Vijay Khemlani" wrote: > Why is there a backslash in > > from django.conf.urls import polls\ > > ? > > On 3/16/17, Camilo Torres wrote: > > Hi. > > > > You may have a strange, non-visible

Re: Error running Django tutorial

2017-03-15 Thread Thomas Pittman
from django.conf.urls import url from django.conf.urls import include from django.conf.urls import polls\ from django.contrib import admin urlpatterns = [ url(r'^polls/', include('polls.urls')), url(r'^admin/', include('admin.site.urls')), ] Here is a copy of the the mysite.py file. I'm n

Re: Error running Django tutorial

2017-03-15 Thread Thomas Pittman
Here is the error I keep getting. I've started this tutorial on python 3.6. I ran into the problems people had before. Somehow I've fixed them before I got here. I can't seem to reconcile this part. Any suggestions? On Saturday, February 27, 2016 at 2:50:39 PM UTC-5, Mike Kipling wrote: > >