Skip to content

Commit 28257ab

Browse files
authored
Merge pull request #1034 from jdufresne/fix-example
Fix example.urls to work with Django 2.0
2 parents 9964a20 + 41623ac commit 28257ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
url(r'^jquery/$', TemplateView.as_view(template_name='jquery/index.html')),
99
url(r'^mootools/$', TemplateView.as_view(template_name='mootools/index.html')),
1010
url(r'^prototype/$', TemplateView.as_view(template_name='prototype/index.html')),
11-
url(r'^admin/', include(admin.site.urls)),
11+
url(r'^admin/', admin.site.urls),
1212
]
1313

1414
if settings.DEBUG:

0 commit comments

Comments
 (0)