diff options
Diffstat (limited to 'paste/wsgilib.py')
-rw-r--r-- | paste/wsgilib.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/paste/wsgilib.py b/paste/wsgilib.py index d033387..67ced97 100644 --- a/paste/wsgilib.py +++ b/paste/wsgilib.py @@ -437,7 +437,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): @@ -488,7 +488,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): @@ -510,7 +510,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): |