diff options
| author | krysros <krystian.rosinski@gmail.com> | 2014-05-16 22:03:39 +0200 |
|---|---|---|
| committer | krysros <krystian.rosinski@gmail.com> | 2014-05-16 22:03:39 +0200 |
| commit | 71ad608da8651417d238bcce3337362db72d25b0 (patch) | |
| tree | ffd098d8cc3d13e140a4632efabbb7af73600c36 | |
| parent | 25fcdfb692d29b47199609603791fc6dadb33f71 (diff) | |
| download | pyramid-71ad608da8651417d238bcce3337362db72d25b0.tar.gz pyramid-71ad608da8651417d238bcce3337362db72d25b0.tar.bz2 pyramid-71ad608da8651417d238bcce3337362db72d25b0.zip | |
fix typo
| -rw-r--r-- | pyramid/security.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyramid/security.py b/pyramid/security.py index c98d4e6cc..041155563 100644 --- a/pyramid/security.py +++ b/pyramid/security.py @@ -59,7 +59,7 @@ def has_permission(permission, context, request): deprecated( 'has_permission', 'As of Pyramid 1.5 the "pyramid.security.has_permission" API is now ' - 'deprecated. It will be removed in Pyramd 1.8. Use the ' + 'deprecated. It will be removed in Pyramid 1.8. Use the ' '"has_permission" method of the Pyramid request instead.' ) @@ -77,7 +77,7 @@ def authenticated_userid(request): deprecated( 'authenticated_userid', 'As of Pyramid 1.5 the "pyramid.security.authenticated_userid" API is now ' - 'deprecated. It will be removed in Pyramd 1.8. Use the ' + 'deprecated. It will be removed in Pyramid 1.8. Use the ' '"authenticated_userid" attribute of the Pyramid request instead.' ) @@ -94,7 +94,7 @@ def unauthenticated_userid(request): deprecated( 'unauthenticated_userid', 'As of Pyramid 1.5 the "pyramid.security.unauthenticated_userid" API is ' - 'now deprecated. It will be removed in Pyramd 1.8. Use the ' + 'now deprecated. It will be removed in Pyramid 1.8. Use the ' '"unauthenticated_userid" attribute of the Pyramid request instead.' ) @@ -111,7 +111,7 @@ def effective_principals(request): deprecated( 'effective_principals', 'As of Pyramid 1.5 the "pyramid.security.effective_principals" API is ' - 'now deprecated. It will be removed in Pyramd 1.8. Use the ' + 'now deprecated. It will be removed in Pyramid 1.8. Use the ' '"effective_principals" attribute of the Pyramid request instead.' ) |
