From e6ed107fdf2c96bf1c698b212e3e0d4a1102e4d0 Mon Sep 17 00:00:00 2001 From: lefherz Date: Wed, 5 Jun 2019 11:44:20 +0200 Subject: [PATCH] fixed typo --- mastodon/Mastodon.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 76c22cf..ef71078 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py @@ -3080,19 +3080,19 @@ class MastodonServerError(MastodonAPIError): """Raised if the Server is malconfigured and returns a 5xx error code""" pass -class MastodonInternalServerError(MastodonServerError) +class MastodonInternalServerError(MastodonServerError): """Raised if the Server returns a 500 error""" pass -class MastodonBadGatewayError(MastodonServerError) +class MastodonBadGatewayError(MastodonServerError): """Raised if the Server returns a 502 error""" pass -class MastodonServiceUnavailableError(MastodonServerError) +class MastodonServiceUnavailableError(MastodonServerError): """Raised if the Server returns a 503 error""" pass -class MastodonGatewayTimeoutError(MastodonServerError) +class MastodonGatewayTimeoutError(MastodonServerError): """Raised if the Server returns a 504 error""" pass