summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2014-05-16 13:08:44 -0700
committerSteve Piercy <web@stevepiercy.com>2014-05-16 13:08:44 -0700
commit22b68cb0453be7482916d08d8ff8bc06a523e709 (patch)
treeffd098d8cc3d13e140a4632efabbb7af73600c36
parent25fcdfb692d29b47199609603791fc6dadb33f71 (diff)
parent71ad608da8651417d238bcce3337362db72d25b0 (diff)
downloadpyramid-22b68cb0453be7482916d08d8ff8bc06a523e709.tar.gz
pyramid-22b68cb0453be7482916d08d8ff8bc06a523e709.tar.bz2
pyramid-22b68cb0453be7482916d08d8ff8bc06a523e709.zip
Merge pull request #1347 from krysros/master
fix typo
-rw-r--r--pyramid/security.py8
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.'
)