I had to add ```from django.conf.urls import url from django.conf.urls import url urlpatterns = [ url(r'^$', lambda x: x) ] ROOT_URLCONF = 'settings' ``` to my settings file to get my project to work (django 1.9). The lambda function is just a dummy function to fill the view paramater
I had to add
to my settings file to get my project to work (django 1.9). The lambda function is just a dummy function to fill the view paramater