diff options
author | Ben Nemec <bnemec@redhat.com> | 2018-04-24 14:19:09 +0000 |
---|---|---|
committer | Ben Nemec <bnemec@redhat.com> | 2018-04-24 14:20:12 +0000 |
commit | e45ffc9bf415fc88d9644a80d92df4196628d85c (patch) | |
tree | 4508fce99547e89697fa1c5dd4d7d5b05c4bb5b9 | |
parent | 2a5251c52da41ae262983a09020a7fd951976fa3 (diff) | |
download | oslo-db-e45ffc9bf415fc88d9644a80d92df4196628d85c.tar.gz |
List PyMySQL first in installation docs
It's by far the most tested driver with oslo.db so it makes sense
to have it first in the list of driver options.
Mostly this is just to have a change to merge so the reno jobs get
run again though.
Change-Id: I5a9a05b6c3e3008cb1dfefc2df397003c2cbc7fd
-rw-r--r-- | doc/source/install/index.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/install/index.rst b/doc/source/install/index.rst index 1390f94..9835818 100644 --- a/doc/source/install/index.rst +++ b/doc/source/install/index.rst @@ -8,11 +8,11 @@ At the command line:: You will also need to install at least one SQL backend:: - $ pip install psycopg2 + $ pip install PyMySQL Or:: - $ pip install PyMySQL + $ pip install psycopg2 Or:: |