summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCollin Anderson <cmawebsite@gmail.com>2014-07-06 18:31:10 -0400
committerTim Graham <timograham@gmail.com>2014-07-07 15:33:03 -0400
commit5acb0a913997aea83dbbf272bcc97f67a25a32c4 (patch)
tree94d0c17371d9218869a5270d4924a086382145d9
parentcf9e33f930be9032f68e12301e6d1f9f9d139f3c (diff)
[1.7.x] Fixed a few PEP8 errors in settings doc.
Backport of 2c1384fbac from master
-rw-r--r--docs/ref/settings.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index ade91da821..a5acc69b12 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -88,8 +88,8 @@ middleware; if so this middleware must be listed first in
wildcard::
ALLOWED_HOSTS = [
- '.example.com', # Allow domain and subdomains
- '.example.com.', # Also allow FQDN and subdomains
+ '.example.com', # Allow domain and subdomains
+ '.example.com.', # Also allow FQDN and subdomains
]
In Django 1.7, the trailing dot is stripped when performing host validation,
@@ -1270,7 +1270,7 @@ FILE_UPLOAD_HANDLERS
Default::
("django.core.files.uploadhandler.MemoryFileUploadHandler",
- "django.core.files.uploadhandler.TemporaryFileUploadHandler",)
+ "django.core.files.uploadhandler.TemporaryFileUploadHandler")
A tuple of handlers to use for uploading. See :doc:`/topics/files` for details.
@@ -1637,7 +1637,7 @@ Example::
LOCALE_PATHS = (
'/home/www/project/common_files/locale',
- '/var/local/translations/locale'
+ '/var/local/translations/locale',
)
Django will look within each of these paths for the ``<locale_code>/LC_MESSAGES``
@@ -1754,7 +1754,7 @@ MIDDLEWARE_CLASSES
Default::
('django.middleware.common.CommonMiddleware',
- 'django.middleware.csrf.CsrfViewMiddleware',)
+ 'django.middleware.csrf.CsrfViewMiddleware')
A tuple of middleware classes to use. See :doc:`/topics/http/middleware`.
@@ -1772,7 +1772,7 @@ MIGRATION_MODULES
Default::
- {} # empty dictionary
+ {} # empty dictionary
A dictionary specifying the package where migration modules can be found on a per-app basis. The default value
of this setting is an empty dictionary, but the default package name for migration modules is ``migrations``.
@@ -1963,7 +1963,7 @@ A dictionary of modules containing serializer definitions (provided as
strings), keyed by a string identifier for that serialization type. For
example, to define a YAML serializer, use::
- SERIALIZATION_MODULES = { 'yaml' : 'path.to.yaml_serializer' }
+ SERIALIZATION_MODULES = {'yaml': 'path.to.yaml_serializer'}
.. setting:: SERVER_EMAIL
@@ -2510,7 +2510,7 @@ Default::
'django.contrib.auth.hashers.SHA1PasswordHasher',
'django.contrib.auth.hashers.MD5PasswordHasher',
'django.contrib.auth.hashers.UnsaltedMD5PasswordHasher',
- 'django.contrib.auth.hashers.CryptPasswordHasher',)
+ 'django.contrib.auth.hashers.CryptPasswordHasher')
.. _settings-comments:
@@ -2621,7 +2621,7 @@ Default::
messages.INFO: 'info',
messages.SUCCESS: 'success',
messages.WARNING: 'warning',
- messages.ERROR: 'error',}
+ messages.ERROR: 'error'}
This sets the mapping of message level to message tag, which is typically
rendered as a CSS class in HTML. If you specify a value, it will extend