summaryrefslogtreecommitdiff
path: root/paste/auth
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2007-02-16 03:46:03 +0000
committerpjenvey <devnull@localhost>2007-02-16 03:46:03 +0000
commitfe719e04951ad9021bea1a186927790bac55d0de (patch)
treef366a1172145237dce83b9ad4164fe57e7fcb551 /paste/auth
parentd829a4e03d6f4030bb1aa05d4d70726be1a1bcca (diff)
downloadpaste-fe719e04951ad9021bea1a186927790bac55d0de.tar.gz
fixed the AuthCookieHandler example
(thanks Damjan Georgievski)
Diffstat (limited to 'paste/auth')
-rw-r--r--paste/auth/cookie.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/auth/cookie.py b/paste/auth/cookie.py
index 8a7ccaf..99ca331 100644
--- a/paste/auth/cookie.py
+++ b/paste/auth/cookie.py
@@ -21,7 +21,7 @@ corresponding to a database session id) is stored in the cookie.
>>> from paste.httpserver import serve
>>> from paste.fileapp import DataApp
>>> from paste.httpexceptions import *
- >>> # from paste.auth.cookie import AuthCookiehandler
+ >>> from paste.auth.cookie import AuthCookieHandler
>>> from paste.wsgilib import parse_querystring
>>> def testapp(environ, start_response):
... user = dict(parse_querystring(environ)).get('user','')