Fixed #23276 -- Deprecated passing views as strings to url().

This commit is contained in:
Tim Graham 2014-08-12 10:54:42 -04:00
parent 2003cb23d4
commit a9fd740d22
28 changed files with 207 additions and 182 deletions

View file

@ -1,5 +1,7 @@
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^index/$', 'view_tests.views.index_page', name='index'),
url(r'^index/$', views.index_page, name='index'),
]