I am working through a (mycodesmells) django tutorial and towards the bottom under "ADDING TO THE PROJECT" it says to update the url.py file with the code that it gives.
Once I update that file it crashes the server and gives me the error. "No module named 'django_simple.todo'
I looked in SO posts and template view and redirect were mentioned in the following post. 1. Does this mean its deprecated? 2. How do i fix or adjust the code for Django 1.1 and Python 3
from django.conf.urls import include, url
from django.contrib import admin
from django_simple.todo import views as todo_views
admin.autodiscover()
urlpatterns = [
url(r'^$', todo_views.index),
url(r'^admin/', include(admin.site.urls)),
]