diff options
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""" |