aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlefherz <[email protected]>2019-06-05 11:44:20 +0200
committerlefherz <[email protected]>2019-06-05 11:44:20 +0200
commite6ed107fdf2c96bf1c698b212e3e0d4a1102e4d0 (patch)
treed7507fecfa6bb037a25e7cc73d0c3911f48200bc /mastodon/Mastodon.py
parentc2e9760edc27a52eba2d8cda881c8c9aa1d4dc11 (diff)
downloadmastodon.py-e6ed107fdf2c96bf1c698b212e3e0d4a1102e4d0.tar.gz
fixed typo
Diffstat (limited to 'mastodon/Mastodon.py')
-rw-r--r--mastodon/Mastodon.py8
1 files 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):
3080 """Raised if the Server is malconfigured and returns a 5xx error code""" 3080 """Raised if the Server is malconfigured and returns a 5xx error code"""
3081 pass 3081 pass
3082 3082
3083class MastodonInternalServerError(MastodonServerError) 3083class MastodonInternalServerError(MastodonServerError):
3084 """Raised if the Server returns a 500 error""" 3084 """Raised if the Server returns a 500 error"""
3085 pass 3085 pass
3086 3086
3087class MastodonBadGatewayError(MastodonServerError) 3087class MastodonBadGatewayError(MastodonServerError):
3088 """Raised if the Server returns a 502 error""" 3088 """Raised if the Server returns a 502 error"""
3089 pass 3089 pass
3090 3090
3091class MastodonServiceUnavailableError(MastodonServerError) 3091class MastodonServiceUnavailableError(MastodonServerError):
3092 """Raised if the Server returns a 503 error""" 3092 """Raised if the Server returns a 503 error"""
3093 pass 3093 pass
3094 3094
3095class MastodonGatewayTimeoutError(MastodonServerError) 3095class MastodonGatewayTimeoutError(MastodonServerError):
3096 """Raised if the Server returns a 504 error""" 3096 """Raised if the Server returns a 504 error"""
3097 pass 3097 pass
3098 3098
Powered by cgit v1.2.3 (git 2.41.0)