1
0
mirror of https://github.com/django/django.git synced 2025-05-12 18:06:30 +00:00
Alasdair Nicol fe3fc5210f Fixed #23813 -- Added checks for common URL pattern errors
Thanks jwa and lamby for the suggestions, and timgraham and jarshwah
for their reviews.
2015-09-21 23:46:21 +10:00

14 lines
230 B
Python

from django.conf.urls import include, url
from django.http import HttpResponse
def view(request):
return HttpResponse('')
urlpatterns = [
url('^', include([
url(r'^$', view, name='name_with:colon'),
])),
]