diff options
author | Helmut Grohne <helmut@subdivi.de> | 2008-02-28 14:03:55 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2008-02-28 14:03:55 +0100 |
commit | da7964ce7cbdc0e28c4558caabcf36d384253ed1 (patch) | |
tree | fcf9bc383e46bfd64eacc8ebbd5a6b357f3d6ce0 /wsgitools/adapters.py | |
parent | aa85b52862c598afab383e777688feb9648cfbf0 (diff) | |
download | wsgitools-da7964ce7cbdc0e28c4558caabcf36d384253ed1.tar.gz |
refactored docstrings for epydoc
Diffstat (limited to 'wsgitools/adapters.py')
-rw-r--r-- | wsgitools/adapters.py | 2 |
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""" |