diff options
| author | pjenvey <devnull@localhost> | 2007-01-05 03:18:34 +0000 |
|---|---|---|
| committer | pjenvey <devnull@localhost> | 2007-01-05 03:18:34 +0000 |
| commit | c3489449893fc6facc58dd06a2ea13091d9096fa (patch) | |
| tree | 94c8bd85450992880b8796ab592896c56d69e69c /paste/auth/basic.py | |
| parent | dc929a2a6569b1ec4d30e5ba4f3741c07c47b4ce (diff) | |
| download | paste-c3489449893fc6facc58dd06a2ea13091d9096fa.tar.gz | |
convert old-style classes to new-style classes
Diffstat (limited to 'paste/auth/basic.py')
| -rw-r--r-- | paste/auth/basic.py | 4 |
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 |
