summaryrefslogtreecommitdiffstats
path: root/keystone/exception.py
diff options
context:
space:
mode:
authorSahdev Zala <spzala@us.ibm.com>2013-04-05 11:23:44 -0500
committerSahdev Zala <spzala@us.ibm.com>2013-04-05 11:27:01 -0500
commitb033538ec7a35161809766b262e34029a84893e1 (patch)
treeb2e3d5e7cc270986a9d35b413633232bb03f6d0b /keystone/exception.py
parent31c6cd80e45466912836daa9303a4e8c154698c4 (diff)
downloadkeystone-b033538ec7a35161809766b262e34029a84893e1.tar.gz
keystone-b033538ec7a35161809766b262e34029a84893e1.tar.xz
keystone-b033538ec7a35161809766b262e34029a84893e1.zip
Fix 401 status response
Fixes Bug1153718 Change-Id: I18adefdc9cf6cadee6006e9352e872dfb4de7e1d
Diffstat (limited to 'keystone/exception.py')
-rw-r--r--keystone/exception.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/exception.py b/keystone/exception.py
index bbf4c58f..eaacfcf0 100644
--- a/keystone/exception.py
+++ b/keystone/exception.py
@@ -111,7 +111,7 @@ class SecurityError(Error):
class Unauthorized(SecurityError):
"""The request you have made requires authentication."""
code = 401
- title = 'Not Authorized'
+ title = 'Unauthorized'
class AuthPluginException(Unauthorized):