summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Gottfried <sascha.gottfried@googlemail.com>2015-03-20 09:43:54 +0100
committerSascha Gottfried <sascha.gottfried@googlemail.com>2015-03-20 09:43:54 +0100
commitf7333f1ad6233981a2d5d16bf6f152c52a176d90 (patch)
tree0812643b95c0ef122c3840e671ac5275b11e5559
parent454dfb06aae544cecb13b1aa17aa964e230620d9 (diff)
downloadwaitress-f7333f1ad6233981a2d5d16bf6f152c52a176d90.tar.gz
Fix code highlighting syntax
Removed double colon prevented the following code-block directive to work properly.
-rw-r--r--docs/index.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/index.rst b/docs/index.rst
index b9a58b7..f79e214 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -95,12 +95,12 @@ influence the logger level and output stream using the normal Python
Within a PasteDeploy configuration file, you can use the normal Python
``logging`` module ``.ini`` file format to change similar Waitress logging
-options. For example::
+options. For example:
.. code-block:: ini
- [logger_waitress]
- level = INFO
+ [logger_waitress]
+ level = INFO
Using Behind a Reverse Proxy
----------------------------