X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/80a2c67a898b06c9c28bda89d7aa012676c2a23a..ab093330473e6cee879256b9902ce90bd1832c35:/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