summaryrefslogtreecommitdiff
path: root/paste/wsgilib.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-09-29 14:47:43 +0000
committerianb <devnull@localhost>2006-09-29 14:47:43 +0000
commit4ff3dbeb002b5683383b3fd252493356585db50e (patch)
tree54043d22875ea26c094ba1c716084c97365b4c6f /paste/wsgilib.py
parent2eb7d0d0fb18f28672c810bd9cfc8cf4b48d278d (diff)
downloadpaste-4ff3dbeb002b5683383b3fd252493356585db50e.tar.gz
Fixed some reST code-block statements
Diffstat (limited to 'paste/wsgilib.py')
-rw-r--r--paste/wsgilib.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/paste/wsgilib.py b/paste/wsgilib.py
index 1653bf2..9b3093f 100644
--- a/paste/wsgilib.py
+++ b/paste/wsgilib.py
@@ -441,7 +441,7 @@ def capture_output(environ, start_response, application):
Sends status and header, but *not* body. Returns (status,
headers, body). Typically this is used like:
- ..code-block:: Python
+ .. code-block:: Python
def dehtmlifying_middleware(application):
def replacement_app(environ, start_response):
@@ -492,7 +492,7 @@ def intercept_output(environ, application, conditional=None,
Typically this is used like:
- ..code-block:: Python
+ .. code-block:: Python
def dehtmlifying_middleware(application):
def replacement_app(environ, start_response):
@@ -513,7 +513,7 @@ def intercept_output(environ, application, conditional=None,
will be returned. You must detect that in your code and return
the app_iter, like:
- ..code-block:: Python
+ .. code-block:: Python
def dehtmlifying_middleware(application):
def replacement_app(environ, start_response):