summaryrefslogtreecommitdiff
path: root/wsgitools/adapters.py
diff options
context:
space:
mode:
Diffstat (limited to 'wsgitools/adapters.py')
-rw-r--r--wsgitools/adapters.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wsgitools/adapters.py b/wsgitools/adapters.py
index 6c6bbca..2c7615a 100644
--- a/wsgitools/adapters.py
+++ b/wsgitools/adapters.py
@@ -16,7 +16,7 @@ except NameError:
return it.next()
__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):
@@ -34,7 +34,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):