Skip to content

Commit 9a384ba

Browse files
committed
url is suggested instead of tuple
1 parent 8f6f21d commit 9a384ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_project/urls.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
from django.conf.urls import include
1+
from django.conf.urls import include, url
22

33
# Uncomment the next two lines to enable the admin:
44
# from django.contrib import admin
55
# admin.autodiscover()
66

77
urlpatterns = [
8-
(r'^badges/', include('badges.urls')),
8+
url(r'^badges/', include('badges.urls')),
99
# Example:
1010
# (r'^test_project/', include('test_project.foo.urls')),
1111

0 commit comments

Comments
 (0)