summaryrefslogtreecommitdiff
path: root/tests/urls.py
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2011-12-29 17:03:38 +0000
committerRamiro Morales <cramm0@gmail.com>2011-12-29 17:03:38 +0000
commitf185024fc40d38fb4bcb9d3bb4a9b7a9e0f94219 (patch)
treee17378d28d870d675ff89f678984fb32218b6739 /tests/urls.py
parent3367913c3db97a15b64f03646ac2c4486a77376f (diff)
downloaddjango-f185024fc40d38fb4bcb9d3bb4a9b7a9e0f94219.tar.gz
Made sure the new project template functionality works when the template
path specified has a trailing path separator. Thanks Alex for the report. Fixes #17475. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17287 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/urls.py')
-rw-r--r--tests/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/urls.py b/tests/urls.py
index 4cd603e29f..4f37ab5f52 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -27,7 +27,7 @@ urlpatterns = patterns('',
# admin custom URL tests
(r'^custom_urls/', include('regressiontests.admin_custom_urls.urls')),
- # admin custom URL tests
+ # admin scripts tests
(r'^admin_scripts/', include('regressiontests.admin_scripts.urls')),
)