X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/0b7e02cf796af7d3028efabeb37473f9198d0af2..085dd288093e1fd5455cc4db9f82998f05656a14:/apps/api/response.py diff --git a/apps/api/response.py b/apps/api/response.py index c1401635..a094f9c1 100644 --- a/apps/api/response.py +++ b/apps/api/response.py @@ -98,9 +98,12 @@ class EntityConflict(ResponseObject): # # Server side errors # -class NotImplemented(ResponseObject): +class InternalError(ResponseObject): def __init__(self, **kwargs): - ResponseObject.__init__(self, 501, **kwargs) + ResponseObject.__init__(self, 500, **kwargs) +class NotImplemented(ResponseObject): + def __init__(self, **kwargs): + ResponseObject.__init__(self, 501, **kwargs) \ No newline at end of file