Author: mtredinnick
Date: 2007-10-27 01:23:05 -0500 (Sat, 27 Oct 2007)
New Revision: 6618
Modified:
django/trunk/tests/regressiontests/templates/urls.py
Log:
Fixed an invalid URL specification.
Modified: django/trunk/tests/regressiontests/templates/urls.py
===================================================================
--- django/trunk/tests/regressiontests/templates/urls.py 2007-10-27
04:34:50 UTC (rev 6617)
+++ django/trunk/tests/regressiontests/templates/urls.py 2007-10-27
06:23:05 UTC (rev 6618)
@@ -7,7 +7,7 @@
# 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.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---