Skip to content

Commit

Permalink
Merge pull request #189 from vimeo/Onebrownsound-patch-1
Browse files Browse the repository at this point in the history
Update exceptions.py
  • Loading branch information
hedyyytang authored May 13, 2024
2 parents 4475b61 + 02e32c7 commit 813553f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vimeo/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __get_message(self, response):
elif hasattr(response, 'text'):
response_message = getattr(response, 'message', 'There was an unexpected error.')
message = getattr(response, 'text', response_message)
elif hasattr(response, 'message')::
elif hasattr(response, 'message'):
message = getattr(response, 'message')

return message
Expand Down

0 comments on commit 813553f

Please sign in to comment.