summaryrefslogtreecommitdiff
path: root/paste/auth/basic.py
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2007-01-05 03:18:34 +0000
committerpjenvey <devnull@localhost>2007-01-05 03:18:34 +0000
commitc3489449893fc6facc58dd06a2ea13091d9096fa (patch)
tree94c8bd85450992880b8796ab592896c56d69e69c /paste/auth/basic.py
parentdc929a2a6569b1ec4d30e5ba4f3741c07c47b4ce (diff)
downloadpaste-c3489449893fc6facc58dd06a2ea13091d9096fa.tar.gz
convert old-style classes to new-style classes
Diffstat (limited to 'paste/auth/basic.py')
-rw-r--r--paste/auth/basic.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paste/auth/basic.py b/paste/auth/basic.py
index c51dde5..69db128 100644
--- a/paste/auth/basic.py
+++ b/paste/auth/basic.py
@@ -24,7 +24,7 @@ serving on...
from paste.httpexceptions import HTTPUnauthorized
from paste.httpheaders import *
-class AuthBasicAuthenticator:
+class AuthBasicAuthenticator(object):
"""
implements ``Basic`` authentication details
"""
@@ -52,7 +52,7 @@ class AuthBasicAuthenticator:
__call__ = authenticate
-class AuthBasicHandler:
+class AuthBasicHandler(object):
"""
HTTP/1.0 ``Basic`` authentication middleware