diff options
| author | Michael Merickel <michael@merickel.org> | 2011-07-10 10:45:10 -0700 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2011-07-10 10:45:10 -0700 |
| commit | fe5374dfccaf235458dd3f8343a81c80cb3180c2 (patch) | |
| tree | be9426a2f878ef1243b4ea90832bab72f2f27f7c /docs | |
| parent | 4b105d5853988f846a0ff604e811b436b8a68f50 (diff) | |
| parent | 546ae051d076de48496b721f13fd74c3f4c12a67 (diff) | |
| download | pyramid-fe5374dfccaf235458dd3f8343a81c80cb3180c2.tar.gz pyramid-fe5374dfccaf235458dd3f8343a81c80cb3180c2.tar.bz2 pyramid-fe5374dfccaf235458dd3f8343a81c80cb3180c2.zip | |
Merge pull request #228 from ejo/patch-3
Adding 'I' to example custom AuthenticationPolicy; it's an interface.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/narr/security.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/security.rst b/docs/narr/security.rst index c7a07b857..322e905f6 100644 --- a/docs/narr/security.rst +++ b/docs/narr/security.rst @@ -562,7 +562,7 @@ that implements the following interface: .. code-block:: python :linenos: - class AuthenticationPolicy(object): + class IAuthenticationPolicy(object): """ An object representing a Pyramid authentication policy. """ def authenticated_userid(self, request): |
