summaryrefslogtreecommitdiff
path: root/paste/auth/cookie.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/cookie.py
parentdc929a2a6569b1ec4d30e5ba4f3741c07c47b4ce (diff)
downloadpaste-c3489449893fc6facc58dd06a2ea13091d9096fa.tar.gz
convert old-style classes to new-style classes
Diffstat (limited to 'paste/auth/cookie.py')
-rw-r--r--paste/auth/cookie.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paste/auth/cookie.py b/paste/auth/cookie.py
index a650436..8a7ccaf 100644
--- a/paste/auth/cookie.py
+++ b/paste/auth/cookie.py
@@ -70,7 +70,7 @@ def new_secret():
""" returns a 64 byte secret """
return ''.join(random.sample(_all_chars, 64))
-class AuthCookieSigner:
+class AuthCookieSigner(object):
"""
save/restore ``environ`` entries via digially signed cookie
@@ -180,7 +180,7 @@ class AuthCookieEnviron(list):
return
list.append(self, str(value))
-class AuthCookieHandler:
+class AuthCookieHandler(object):
"""
the actual handler that should be put in your middleware stack