diff options
| author | Alasdair Nicol <alasdair@memset.com> | 2013-10-17 23:27:45 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-17 20:20:11 -0400 |
| commit | dfb4cb9970f86487f0aaa88c5dfcfafa31e4f430 (patch) | |
| tree | 4762099924f11873e9b6608e6f056939f16410b9 /django/conf | |
| parent | d97bec5ee3a6284d30b613c9070588a60358e7ec (diff) | |
Fixed #21285 -- Fixed E121,E122 pep8 warnings
Diffstat (limited to 'django/conf')
| -rw-r--r-- | django/conf/global_settings.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 6dd25e18f9..377c010b32 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -198,7 +198,7 @@ TEMPLATE_DIRS = () TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader', -# 'django.template.loaders.eggs.Loader', + # 'django.template.loaders.eggs.Loader', ) # List of processors used by RequestContext to populate the context. @@ -211,7 +211,7 @@ TEMPLATE_CONTEXT_PROCESSORS = ( 'django.core.context_processors.media', 'django.core.context_processors.static', 'django.core.context_processors.tz', -# 'django.core.context_processors.request', + # 'django.core.context_processors.request', 'django.contrib.messages.context_processors.messages', ) @@ -456,8 +456,8 @@ MIDDLEWARE_CLASSES = ( 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', -# 'django.middleware.http.ConditionalGetMiddleware', -# 'django.middleware.gzip.GZipMiddleware', + # 'django.middleware.http.ConditionalGetMiddleware', + # 'django.middleware.gzip.GZipMiddleware', ) ############ @@ -607,7 +607,7 @@ STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage' STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', -# 'django.contrib.staticfiles.finders.DefaultStorageFinder', + # 'django.contrib.staticfiles.finders.DefaultStorageFinder', ) ############## |
