Merge "Fix a error exception code"

This commit is contained in:
Zuul 2018-01-24 00:04:44 +00:00 committed by Gerrit Code Review
commit 08ee487b0b

View File

@ -453,7 +453,7 @@ class Fault(webob.exc.HTTPException):
code_wrapper = {
400: webob.exc.HTTPBadRequest,
401: webob.exc.HTTPUnauthorized,
403: webob.exc.HTTPUnauthorized,
403: webob.exc.HTTPForbidden,
404: webob.exc.HTTPNotFound,
}