Fix the README formatting

PyPI is now stricter about this, we need this change for any future
releases.

The easiest way to test this is by running the following command in a
virtualenv with docutils.

    python setup.py check --restructuredtext --strict

Related: https://review.openstack.org/#/c/568881/
Change-Id: I6734d4ef44af430ee6232e2235be9de493806324
This commit is contained in:
Dougal Matthews 2018-06-01 15:39:12 +01:00
parent 4e28b65fcf
commit ea4951a597
1 changed files with 2 additions and 1 deletions

View File

@ -68,7 +68,7 @@ an OpenStack environment.
* Create the database and grant privileges::
$ mysql -u root -p
$ mysql -u root -p
mysql> CREATE DATABASE mistral;
mysql> USE mistral;
mysql> GRANT ALL PRIVILEGES ON mistral.* TO 'mistral'@'localhost' IDENTIFIED BY 'MISTRAL_DBPASS';
@ -147,6 +147,7 @@ To update the database schema to the latest revision, type::
$ mistral-db-manage --config-file <path_to_config> upgrade head
To populate the database with standard actions and workflows, type::
$ mistral-db-manage --config-file <path_to_config> populate
For more detailed information about ``mistral-db-manage`` script please check