Fixed an invalid URL specification.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6618 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
212aa32e2a
commit
91556cf22e
|
@ -7,7 +7,7 @@ urlpatterns = patterns('',
|
||||||
# Test urls for testing reverse lookups
|
# Test urls for testing reverse lookups
|
||||||
(r'^$', views.index),
|
(r'^$', views.index),
|
||||||
(r'^client/(\d+)/$', views.client),
|
(r'^client/(\d+)/$', views.client),
|
||||||
(r'^client/(\d+)/(?P<action>[^/]+)/$', views.client_action),
|
(r'^client/(?P<id>\d+)/(?P<action>[^/]+)/$', views.client_action),
|
||||||
url(r'^named-client/(\d+)/$', views.client, name="named.client"),
|
url(r'^named-client/(\d+)/$', views.client, name="named.client"),
|
||||||
|
|
||||||
# Unicode strings are permitted everywhere.
|
# Unicode strings are permitted everywhere.
|
||||||
|
|
Loading…
Reference in New Issue