diff options
| author | Michael Merickel <michael@merickel.org> | 2014-11-10 01:33:22 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2014-11-10 01:33:22 -0600 |
| commit | a9fb5255cedeb02e5c4210b90fe9942c9dbc781a (patch) | |
| tree | 3a2effcbc58f715acbd82c7dbb84100c3ab9d6da | |
| parent | d1d3edbbafd5ed0160e70f960025a12fa0783b5b (diff) | |
| download | pyramid-a9fb5255cedeb02e5c4210b90fe9942c9dbc781a.tar.gz pyramid-a9fb5255cedeb02e5c4210b90fe9942c9dbc781a.tar.bz2 pyramid-a9fb5255cedeb02e5c4210b90fe9942c9dbc781a.zip | |
re-add missing Interface parent
| -rw-r--r-- | pyramid/interfaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/interfaces.py b/pyramid/interfaces.py index e03704b7f..2b56262c0 100644 --- a/pyramid/interfaces.py +++ b/pyramid/interfaces.py @@ -437,7 +437,7 @@ class IViewMapperFactory(Interface): invocation signatures and response values. """ -class IAuthenticationPolicy(object): +class IAuthenticationPolicy(Interface): """ An object representing a Pyramid authentication policy. """ def authenticated_userid(request): |
