summaryrefslogtreecommitdiff
path: root/wsgitools/adapters.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2008-02-28 14:03:55 +0100
committerHelmut Grohne <helmut@subdivi.de>2008-02-28 14:03:55 +0100
commitda7964ce7cbdc0e28c4558caabcf36d384253ed1 (patch)
treefcf9bc383e46bfd64eacc8ebbd5a6b357f3d6ce0 /wsgitools/adapters.py
parentaa85b52862c598afab383e777688feb9648cfbf0 (diff)
downloadwsgitools-da7964ce7cbdc0e28c4558caabcf36d384253ed1.tar.gz
refactored docstrings for epydoc
Diffstat (limited to 'wsgitools/adapters.py')
-rw-r--r--wsgitools/adapters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsgitools/adapters.py b/wsgitools/adapters.py
index f575295..37e16b8 100644
--- a/wsgitools/adapters.py
+++ b/wsgitools/adapters.py
@@ -25,7 +25,7 @@ class WSGI1to2Adapter:
"""Adapts a WSGI 1.0 application to something that might somewhen be the
WSGI 2.0 interface."""
def __init__(self, app):
- """app is a WSGI 1.0 application"""
+ """@param app: is a WSGI 1.0 application"""
self.app = app
def __call__(self, environ):
"""some interface that might somewhen be known as WSGI 2.0"""