diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-10-27 06:23:05 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-10-27 06:23:05 +0000 |
| commit | 91556cf22e3056695a478cd6888f54bc1bab2841 (patch) | |
| tree | 08110cc0b668167e68b1b1653cba8b3db5efb7c1 | |
| parent | 212aa32e2a27469f542a9298c5ba0c2c04e5b7ff (diff) | |
Fixed an invalid URL specification.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6618 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/regressiontests/templates/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/templates/urls.py b/tests/regressiontests/templates/urls.py index d79f38e0a7..3b28e70d0b 100644 --- a/tests/regressiontests/templates/urls.py +++ b/tests/regressiontests/templates/urls.py @@ -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. |
