Skip to content

Commit

Permalink
fix typo in exception class
Browse files Browse the repository at this point in the history
  • Loading branch information
Sventour committed Sep 27, 2016
1 parent ad11ab3 commit fd14218
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion vimeo/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit fd14218

Please sign in to comment.