From 0f8c5b8ad736b1ac541a7479c69e76f8c0006619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Tue, 9 Jan 2024 00:18:28 +0200 Subject: [PATCH] Update MethodNotAllowedException message --- trakt/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trakt/errors.py b/trakt/errors.py index 0515c4e8..1a86ca75 100644 --- a/trakt/errors.py +++ b/trakt/errors.py @@ -77,7 +77,7 @@ class NotFoundException(TraktException): class MethodNotAllowedException(TraktException): """TraktException type to be raised when a 405 return code is received""" http_code = 405 - message = 'Method not Allowed' + message = 'Method Not Found - method doesn\'t exist' class ConflictException(TraktException):