summaryrefslogtreecommitdiff
path: root/django/conf/project_template/settings.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-05-26 04:05:02 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-05-26 04:05:02 +0000
commitbe25b661b1b2179273b886ec45d4b449a9997a8d (patch)
tree3662e2a26ce8d51c74ef5f28c844c4f0d5683000 /django/conf/project_template/settings.py
parent14392b032de5f3893b996b6b62c8f51462bd3971 (diff)
Fixed #1998 -- Changed double quotes to single quotes
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2980 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/conf/project_template/settings.py')
-rw-r--r--django/conf/project_template/settings.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/django/conf/project_template/settings.py b/django/conf/project_template/settings.py
index 800d1023d9..14da715db5 100644
--- a/django/conf/project_template/settings.py
+++ b/django/conf/project_template/settings.py
@@ -51,10 +51,10 @@ TEMPLATE_LOADERS = (
)
MIDDLEWARE_CLASSES = (
- "django.middleware.common.CommonMiddleware",
- "django.contrib.sessions.middleware.SessionMiddleware",
- "django.contrib.auth.middleware.AuthenticationMiddleware",
- "django.middleware.doc.XViewMiddleware",
+ 'django.middleware.common.CommonMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.middleware.doc.XViewMiddleware',
)
ROOT_URLCONF = '{{ project_name }}.urls'