Author: brosner
Date: 2008-07-20 13:05:11 -0500 (Sun, 20 Jul 2008)
New Revision: 8008
Modified:
django/trunk/django/conf/project_template/urls.py
Log:
Fixed #7842 -- Added a raw string identifier in project template urls.py for
consistency sake. Added spaces for consistency too. Thanks yoshi.
Modified: django/trunk/django/conf/project_template/urls.py
===================================================================
--- django/trunk/django/conf/project_template/urls.py 2008-07-20 12:44:41 UTC
(rev 8007)
+++ django/trunk/django/conf/project_template/urls.py 2008-07-20 18:05:11 UTC
(rev 8008)
@@ -1,15 +1,15 @@
from django.conf.urls.defaults import *
# Uncomment this for admin:
-#from django.contrib import admin
+# from django.contrib import admin
urlpatterns = patterns('',
# Example:
# (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
# Uncomment this for admin docs:
- #(r'^admin/doc/', include('django.contrib.admindocs.urls')),
+ # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment this for admin:
- #('^admin/(.*)', admin.site.root),
+ # (r'^admin/(.*)', admin.site.root),
)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---