I cannot seem to get past the steps in chapter 4. I get the following error, but nothing seems to be incorrect. Here is the error, and here is the code.
Error:
Code:
from django.conf.urls import patterns, url
from django.contrib import admin
from collection import views
urlpatterns = [
url(r’^$’, views.index, name=‘home’),
url(r’^admin/’, include(admin.site.urls)),
]