File python-scgi-newstyle-classes.patch of Package python-scgi
diff --git a/scgi/scgi_server.py b/scgi/scgi_server.py
index 0ff8453..19cbe0e 100644
--- a/scgi/scgi_server.py
+++ b/scgi/scgi_server.py
@@ -48,7 +48,7 @@ def read_env(input):
env[items[i]] = items[i+1]
return env
-class SCGIHandler:
+class SCGIHandler(object):
# Subclasses should override the handle_connection method.
@@ -159,7 +159,7 @@ class SCGIHandler:
print "%s: %r" % (k, v)
-class SCGIServer:
+class SCGIServer(object):
DEFAULT_PORT = 4000