summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-05-31 10:16:06 +0200
committerClaude Paroz <claude@2xlibre.net>2013-05-31 10:17:34 +0200
commit7882c3a67377de7eed7f52a0b91a0a12b2e32655 (patch)
treed82dafc741b8efcaea951dd12e06a92ff259f85b
parent3d883e8bd96df8f2166aec6331b80781463539a6 (diff)
Fixed #20511 -- Corrected link about isolation levels in databases docs
Thanks tinodb for the report.
-rw-r--r--docs/ref/databases.txt9
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index b189f4f5f0..4923e4b177 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -141,10 +141,9 @@ Isolation level
.. versionadded:: 1.6
Like PostgreSQL itself, Django defaults to the ``READ COMMITTED`` `isolation
-level <postgresql-isolation-levels>`_. If you need a higher isolation level
-such as ``REPEATABLE READ`` or ``SERIALIZABLE``, set it in the
-:setting:`OPTIONS` part of your database configuration in
-:setting:`DATABASES`::
+level`_. If you need a higher isolation level such as ``REPEATABLE READ`` or
+``SERIALIZABLE``, set it in the :setting:`OPTIONS` part of your database
+configuration in :setting:`DATABASES`::
import psycopg2.extensions
@@ -161,7 +160,7 @@ such as ``REPEATABLE READ`` or ``SERIALIZABLE``, set it in the
handle exceptions raised on serialization failures. This option is
designed for advanced uses.
-.. _postgresql-isolation-levels: http://www.postgresql.org/docs/current/static/transaction-iso.html
+.. _isolation level: http://www.postgresql.org/docs/current/static/transaction-iso.html
Indexes for ``varchar`` and ``text`` columns
--------------------------------------------