summaryrefslogtreecommitdiff
path: root/docs/transactions.txt
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 /docs/transactions.txt
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 'docs/transactions.txt')
-rw-r--r--docs/transactions.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/transactions.txt b/docs/transactions.txt
index 378aa959d1..c1cd5aa984 100644
--- a/docs/transactions.txt
+++ b/docs/transactions.txt
@@ -32,10 +32,10 @@ To activate this feature, just add the ``TransactionMiddleware`` middleware to
your ``MIDDLEWARE_CLASSES`` setting::
MIDDLEWARE_CLASSES = (
- "django.contrib.sessions.middleware.SessionMiddleware",
- "django.middleware.common.CommonMiddleware",
- "django.middleware.cache.CacheMiddleware",
- "django.middleware.transaction.TransactionMiddleware",
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.cache.CacheMiddleware',
+ 'django.middleware.transaction.TransactionMiddleware',
)
The order is quite important. The transaction middleware applies not only to