From ee7a5cdd7d98c36f37e99ae40bd97d67dd091f32 Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Mon, 18 Aug 2008 13:52:26 +0000 Subject: [PATCH] Fixed #8392 -- Corrected a typo in the project urls.py template. Thanks ramiro for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8432 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/project_template/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/conf/project_template/urls.py b/django/conf/project_template/urls.py index 7b56d73c9e..7c9fab900f 100644 --- a/django/conf/project_template/urls.py +++ b/django/conf/project_template/urls.py @@ -11,6 +11,6 @@ urlpatterns = patterns('', # Uncomment the next line to enable admin documentation: # (r'^admin/doc/', include('django.contrib.admindocs.urls')), - # Uncomment the next line for to enable the admin: + # Uncomment the next line to enable the admin: # (r'^admin/(.*)', admin.site.root), )