mirror of
https://github.com/Hopiu/django.git
synced 2026-05-11 09:03:10 +00:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ urlpatterns = patterns('',
|
|||
# Test urls for testing reverse lookups
|
||||
(r'^$', views.index),
|
||||
(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"),
|
||||
|
||||
# Unicode strings are permitted everywhere.
|
||||
|
|
|
|||
Loading…
Reference in a new issue