summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-11-04 07:35:42 -0500
committerTim Graham <timograham@gmail.com>2014-11-04 07:36:18 -0500
commite7ec0af6fc393d3d0022918c4d46d8975bb65367 (patch)
tree43fadeb11640d7372ca2bd1a241acc08291d3639 /docs/ref
parentd373e223bdb0722b1d7ff9c470f3bf562815507c (diff)
[1.7.x] Fixed links to mysqlclient in database notes.
Backport of e0685368c6 from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/databases.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index dc29dce784..b0396dea08 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -254,7 +254,7 @@ drivers that implement this API:
- `MySQLdb`_ is a native driver that has been developed and supported for over
a decade by Andy Dustman.
-- `mysqlclient` is a fork of ``MySQLdb`` which notably supports Python 3 and
+- `mysqlclient`_ is a fork of ``MySQLdb`` which notably supports Python 3 and
can be used as a drop-in replacement for MySQLdb. At the time of this writing,
this is **the recommended choice** for using MySQL with Django.
- `MySQL Connector/Python`_ is a pure Python driver from Oracle that does not
@@ -303,7 +303,7 @@ Django requires MySQLdb version 1.2.1p2 or later.
mysqlclient
~~~~~~~~~~~
-Django requires mysqlclient 1.3.3 or later. Note that Python 3.2 is not
+Django requires `mysqlclient`_ 1.3.3 or later. Note that Python 3.2 is not
supported. Except for the Python 3.3+ support, mysqlclient should mostly behave
the same as MySQLDB.