Skip to content

Commit

Permalink
Fix 403 status response
Browse files Browse the repository at this point in the history
Fixes Bug1153082

Change-Id: I1305d885751d4fa746e49cd5a76100c1900a9a53
  • Loading branch information
spzala committed May 2, 2013
1 parent 22d96b2 commit ba7f7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keystone/exception.py
Expand Up @@ -141,7 +141,7 @@ def __init__(self, auth_response=None, **kwargs):
class Forbidden(SecurityError):
"""You are not authorized to perform the requested action."""
code = 403
title = 'Not Authorized'
title = 'Forbidden'


class ForbiddenAction(Forbidden):
Expand Down

0 comments on commit ba7f7d2

Please sign in to comment.