README.rst: Fixing code-block strings. (#265)

Github wasn't showing the new readme blocks because they were encoded
code_block instead of the correct code-block.
This commit is contained in:
Corey Hammerton
2016-06-29 20:44:25 -04:00
committed by GitHub
parent 59c79c7592
commit 0ac64530bf

View File

@@ -300,7 +300,7 @@ string, however this string is re-generated on each request under httpd >= 2.4.
To generate your own secret_key create a python script with the following content To generate your own secret_key create a python script with the following content
and run it once: and run it once:
.. code_block:: python .. code-block:: python
import os import os
@@ -308,7 +308,7 @@ and run it once:
Copy the output and add the following to your ``wsgi.py`` file: Copy the output and add the following to your ``wsgi.py`` file:
.. code_block:: python .. code-block:: python
application.secret_key = '<your secret key>' application.secret_key = '<your secret key>'