diff --git a/setup.py b/setup.py index be5b6bd..d2b0c2a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from distutils.core import setup setup(name='PyVimeo', - version='0.3.4', + version='0.3.7', description='Simple interaction with the Vimeo API.', url='https://developer.vimeo.com/', author='Vimeo', diff --git a/vimeo/exceptions.py b/vimeo/exceptions.py index 76e6f74..af97cb6 100644 --- a/vimeo/exceptions.py +++ b/vimeo/exceptions.py @@ -79,7 +79,7 @@ def __init__(self, response, message): super(TexttrackUploadFailure, self).__init__(response, message) -class APIRateLimitExededFailure(BaseVimeoException): +class APIRateLimitExceededFailure(BaseVimeoException): def _get_message(self, response): guidelines = 'https://developer.vimeo.com/guidelines/rate-limiting'