summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--repoze/bfg/authentication.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/repoze/bfg/authentication.py b/repoze/bfg/authentication.py
index 37f03cf8b..154934c45 100644
--- a/repoze/bfg/authentication.py
+++ b/repoze/bfg/authentication.py
@@ -167,10 +167,11 @@ class AuthTktAuthenticationPolicy(CallbackAuthenticationPolicy):
``callback``
- Default: ``None``. A callback passed the userid, expected to return
- None if the userid doesn't exist or a sequence of group identifiers
- (possibly empty) if the user does exist. If ``callback`` is None,
- the userid will be assumed to exist with no groups.
+ Default: ``None``. A callback passed the userid and the request,
+ expected to return None if the userid doesn't exist or a sequence
+ of group identifiers (possibly empty) if the user does exist. If
+ ``callback`` is None, the userid will be assumed to exist with no
+ groups.
``cookie_name``