Small formatting fix to docs/settings.txt -- MIDDLEWARE_CLASSES example was scrolling off the page

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1140 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-11-09 17:39:18 +00:00
parent 0496c113e0
commit 1847c9ef64
1 changed files with 5 additions and 1 deletions

View File

@ -416,7 +416,11 @@ Example: ``"http://media.lawrence.com"``
MIDDLEWARE_CLASSES
------------------
Default: ``("django.middleware.sessions.SessionMiddleware", "django.middleware.common.CommonMiddleware", "django.middleware.doc.XViewMiddleware")``
Default::
("django.middleware.sessions.SessionMiddleware",
"django.middleware.common.CommonMiddleware",
"django.middleware.doc.XViewMiddleware")
A tuple of middleware classes to use. See the `middleware docs`_.