diff --git a/CHANGES.txt b/CHANGES.txt index 6e0c8aa..2d48728 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -12,4 +12,4 @@ v2.310, August 20, 2014 -- Added playlist replace and remove methods. Added auth tests. Improved API docs v2.310, January 05, 2015 -- Added session support v2.3.1, March 28, 2015 -- auto retry support -v2.3.4, April 28, 2015 -- fixed bug in auto retry support +v2.3.5, April 28, 2015 -- fixed bug in auto retry support diff --git a/README.md b/README.md index d659a37..ff452be 100644 --- a/README.md +++ b/README.md @@ -67,4 +67,4 @@ If you have suggestions, bugs or other issues specific to this library, file the - v2.3.0 - January 5, 2015 -- Added session support added by akx. - v2.3.2 - March 31, 2015 -- Added auto retry logic - v2.3.3 - April 1, 2015 -- added client credential flow -- v2.3.4 - April 28, 2015 -- Fixed bug in auto retry logic +- v2.3.5 - April 28, 2015 -- Fixed bug in auto retry logic diff --git a/setup.py b/setup.py index e96b0f4..6da71f9 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='spotipy', - version='2.3.4', + version='2.3.5', description='simple client for the Spotify Web API', author="@plamere", author_email="paul@echonest.com", diff --git a/spotipy/client.py b/spotipy/client.py index ab3f708..16f0b2d 100644 --- a/spotipy/client.py +++ b/spotipy/client.py @@ -131,7 +131,7 @@ class Spotify(object): time.sleep(delay) delay += 1 else: - print ('http status:' + status) + print ('http status:' + str(status)) raise def _post(self, url, args=None, payload=None, **kwargs):