diff options
Diffstat (limited to 'wsgitools/adapters.py')
-rw-r--r-- | wsgitools/adapters.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wsgitools/adapters.py b/wsgitools/adapters.py index 4c82200..050c00a 100644 --- a/wsgitools/adapters.py +++ b/wsgitools/adapters.py @@ -10,7 +10,7 @@ __all__ = [] from wsgitools.filters import CloseableIterator, CloseableList __all__.append("WSGI2to1Adapter") -class WSGI2to1Adapter: +class WSGI2to1Adapter(object): """Adapts an application with an interface that might somewhen be known as WSGI 2.0 to the WSGI 1.0 interface.""" def __init__(self, app): @@ -28,7 +28,7 @@ class WSGI2to1Adapter: return iterable __all__.append("WSGI1to2Adapter") -class WSGI1to2Adapter: +class WSGI1to2Adapter(object): """Adapts a WSGI 1.0 application to something that might somewhen be the WSGI 2.0 interface.""" def __init__(self, app): |