From 42f5ccf09799d3e475eb996b023a0daabae49cdb Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Mon, 6 Jan 2014 18:38:58 +0100 Subject: switch to new-style classes entirely There is no reason to use old-style classes beyond laziness. --- wsgitools/authentication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wsgitools/authentication.py') diff --git a/wsgitools/authentication.py b/wsgitools/authentication.py index 6f5d07b..c39c018 100644 --- a/wsgitools/authentication.py +++ b/wsgitools/authentication.py @@ -9,7 +9,7 @@ class AuthenticationRequired(Exception): class ProtocolViolation(AuthenticationRequired): pass -class AuthenticationMiddleware: +class AuthenticationMiddleware(object): """Base class for HTTP authorization schemes. @cvar authorization_method: the implemented Authorization method. It will -- cgit v1.2.3