diff --git a/CHANGELOG.md b/CHANGELOG.md index 897f852..534f00d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Fixed - -- UnboundLocalError when a request fails ( #571 ) - +// Add your changes here and then delete this line ## [2.16.0] - 2020-09-16 diff --git a/spotipy/client.py b/spotipy/client.py index 8ea9b26..6d4ff07 100644 --- a/spotipy/client.py +++ b/spotipy/client.py @@ -243,8 +243,7 @@ class Spotify(object): response.raise_for_status() results = response.json() - except requests.exceptions.HTTPError as http_error: - response = http_error.response + except requests.exceptions.HTTPError: try: msg = response.json()["error"]["message"] except (ValueError, KeyError): @@ -264,8 +263,7 @@ class Spotify(object): reason=reason, headers=response.headers, ) - except requests.exceptions.RetryError as retry_error: - response = retry_error.response + except requests.exceptions.RetryError: logger.error('Max Retries reached') raise SpotifyException( 599,