Merge pull request #2055 from kevinlondon/patch-6

#2054: Update exceptions to allow custom detail
This commit is contained in:
Tom Christie 2014-11-10 20:04:34 +00:00
commit 3e8068757b

View File

@ -70,7 +70,7 @@ class MethodNotAllowed(APIException):
default_detail = "Method '%s' not allowed."
def __init__(self, method, detail=None):
self.detail = (detail or self.default_detail) % method
self.detail = detail or (self.default_detail % method)
class NotAcceptable(APIException):
@ -87,7 +87,7 @@ class UnsupportedMediaType(APIException):
default_detail = "Unsupported media type '%s' in request."
def __init__(self, media_type, detail=None):
self.detail = (detail or self.default_detail) % media_type
self.detail = detail or (self.default_detail % media_type)
class Throttled(APIException):