diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-05-26 04:05:02 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-05-26 04:05:02 +0000 |
| commit | be25b661b1b2179273b886ec45d4b449a9997a8d (patch) | |
| tree | 3662e2a26ce8d51c74ef5f28c844c4f0d5683000 /django/conf | |
| parent | 14392b032de5f3893b996b6b62c8f51462bd3971 (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')
| -rw-r--r-- | django/conf/global_settings.py | 12 | ||||
| -rw-r--r-- | django/conf/project_template/settings.py | 8 |
2 files changed, 10 insertions, 10 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 6d9b2bc11e..3e9318dfce 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -219,12 +219,12 @@ TRANSACTIONS_MANAGED = False # this middleware classes will be applied in the order given, and in the # response phase the middleware will be applied in reverse order. MIDDLEWARE_CLASSES = ( - "django.contrib.sessions.middleware.SessionMiddleware", - "django.contrib.auth.middleware.AuthenticationMiddleware", -# "django.middleware.http.ConditionalGetMiddleware", -# "django.middleware.gzip.GZipMiddleware", - "django.middleware.common.CommonMiddleware", - "django.middleware.doc.XViewMiddleware", + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', +# 'django.middleware.http.ConditionalGetMiddleware', +# 'django.middleware.gzip.GZipMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.doc.XViewMiddleware', ) ############ 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' |
