change text of PERMISSION_DENIED response

This commit is contained in:
Craig Blaszczyk 2011-07-26 12:10:54 +01:00
parent 3eba22eea4
commit 7070fa298c

View File

@ -28,7 +28,7 @@ _403_FORBIDDEN_RESPONSE = ErrorResponse(
_403_NOT_LOGGED_IN_RESPONSE = ErrorResponse(
status.HTTP_403_FORBIDDEN,
{'detail': 'You need to login to access this resource.'})
{'detail': 'You need to login before you can access this resource.'})
_403_PERMISSION_DENIED_RESPONSE = ErrorResponse(
status.HTTP_403_FORBIDDEN,